    body {
      font-family: 'Inter', Arial, sans-serif;
      background-color: #0d1b2a;
      color: #ffffff;
      max-width: 700px;
      margin: auto;
      padding: 40px 20px;
    }

    h2, h3 {
      color: #f9a826;
      margin-bottom: 20px;
    }

    label {
      font-weight: 600;
      display: block;
      margin-bottom: 5px;
    }

    textarea, input, button {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border-radius: 4px;
      border: none;
      font-size: 16px;
      box-sizing: border-box;
    }

    textarea {
      resize: vertical;
    }

    input {
      background-color: #ffffff;
      color: #000000;
    }

    button {
      background-color: #f9a826;
      color: #000000;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    button:hover {
      background-color: #d98c00;
    }

    .map-summary {
      background-color: #1c2a3a;
      padding: 20px;
      border-radius: 8px;
      margin-top: 20px;
    }

    .summary-line {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .summary-line.highlight {
      font-weight: 600;
      color: #f9a826;
    }

    .summary-line.total {
      font-weight: bold;
      font-size: 18px;
      margin-top: 12px;
      color: #f9a826;
    }

    .value {
      font-weight: bold;
      color: #ffffff;
    }

    .summary-note {
      font-size: 14px;
      color: #cccccc;
      margin-top: 10px;
    }
