
    * {
      -webkit-tap-highlight-color: transparent;
    }

    body {
      margin: 0;
      overflow: hidden;
    }

    #map {
      height: 100vh;
      width: 100vw;
      touch-action: pan-x pan-y;
    }

    .toolbar {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 1000;
      background: white;
      padding: 8px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-wrap: wrap;
      max-width: calc(100vw - 100px);
      align-items: center;
      justify-content: center;
    }

    .btn {
      padding: 2px 6px;
      margin: 2px;
      border: 2px solid transparent;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      touch-action: manipulation;
      -webkit-user-select: none;
      user-select: none;
    }

    .btn.selected {
      border-color: black;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    }

    .fee-10 {
      background: #10b981;
      color: white;
    }

    .fee-15 {
      background: #06b6d4;
      color: white;
    }

    .fee-20 {
      background: #3b82f6;
      color: white;
    }

    .fee-25 {
      background: #8b5cf6;
      color: white;
    }

    .fee-30 {
      background: #ec4899;
      color: white;
    }

    .fee-35 {
      background: #fbbf24;
      color: black;
    }

    .fee-40 {
      background: #f97316;
      color: white;
    }

    .fee-45 {
      background: #ef4444;
      color: white;
    }

    .fee-50 {
      background: #7c2d12;
      color: white;
    }

    .zoom-controls {
      position: absolute;
      bottom: 30px;
      right: 10px;
      z-index: 1000;
      background: white;
      border-radius: 4px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
    }

    .zoom-btn {
      background: white;
      color: #333;
      font-size: 20px;
      font-weight: bold;
      line-height: 1;
      padding: 0;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-bottom: 1px solid #ccc;
      box-shadow: none;
      cursor: pointer;
      margin: 0;
    }

    .zoom-btn:first-child {
      border-radius: 4px 4px 0 0;
    }

    .zoom-btn:last-child {
      border-radius: 0 0 4px 4px;
      border-bottom: none;
    }

    .zoom-btn:hover {
      background: #f4f4f4;
    }

    .zoom-btn:active {
      background: #e8e8e8;
    }

    .menu-container {
      position: relative;
      display: inline-block;
    }

    .menu-btn {
      color: black;
      font-size: 18px;
      padding: 2px 8px;
    }

    .menu-btn:hover {
      background: rgb(213, 213, 213);
    }

    .menu-dropdown {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      background: white;
      border-radius: 6px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      margin-bottom: 5px;
      min-width: 150px;
      z-index: 1001;
    }

    .menu-dropdown.show {
      display: block;
    }

    .menu-item {
      padding: 10px 15px;
      cursor: pointer;
      border-bottom: 1px solid #e5e7eb;
      font-size: 14px;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .menu-item:first-child {
      border-radius: 6px 6px 0 0;
    }

    .menu-item:last-child {
      border-bottom: none;
      border-radius: 0 0 6px 6px;
    }

    .menu-item:hover {
      background: #f3f4f6;
    }

    #fileInput {
      display: none;
    }

    .toolbar select {
      padding: 6px 10px;
      border: 2px solid #d1d5db;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      background: white;
      min-width: 120px;
      margin: 2px;
    }

    .toolbar select:disabled {
      background: #f3f4f6;
      cursor: not-allowed;
      opacity: 0.6;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10001;
      justify-content: center;
      align-items: center;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      max-width: 400px;
      width: 90%;
    }

    .modal-content h3 {
      margin: 0 0 16px 0;
      font-size: 18px;
      color: #333;
    }

    .modal-content input {
      width: 100%;
      padding: 10px;
      border: 2px solid #d1d5db;
      border-radius: 6px;
      font-size: 14px;
      margin-bottom: 16px;
      box-sizing: border-box;
    }

    .modal-buttons {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
    }

    .modal-buttons button {
      padding: 8px 16px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .modal-buttons .btn-cancel {
      background: #e5e7eb;
      color: #333;
    }

    .modal-buttons .btn-save {
      background: #10b981;
      color: white;
    }

    .modal-buttons .btn-delete {
      background: #ef4444;
      color: white;
    }

    .toast {
      position: fixed;
      bottom: 30px;
      right: 50px;
      background: #10b981;
      color: white;
      padding: 16px 24px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 10000;
      font-weight: 600;
      font-size: 14px;
      animation: slideIn 0.3s ease-out;
      max-width: 350px;
    }

    @keyframes slideIn {
      from {
        transform: translateY(400px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes slideOut {
      from {
        transform: translateY(0);
        opacity: 1;
      }

      to {
        transform: translateY(400px);
        opacity: 0;
      }
    }

    .toast.hiding {
      animation: slideOut 0.3s ease-in;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .toolbar {
        top: 5px;
        left: 5px;
        right: 5px;
        max-width: calc(100vw - 10px);
        padding: 4px;
      }

      .btn {
        padding: 2px 6px;
        margin: 1px;
        font-size: 13px;
        min-width: 45px;
      }

      .zoom-controls {
        bottom: 20px;
        right: 5px;
      }

      .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
      }

      .toast {
        bottom: 20px;
        right: 20%;
        left: 20%;
        max-width: calc(100vw - 20px);
        font-size: 13px;
        padding: 12px 16px;
      }
    }

    @media (max-width: 480px) {
      .toolbar {
        padding: 4px;
      }

      .btn {
        padding: 4px 10px;
        font-size: 14px;
        min-width: 50px;
        margin: 1px;
      }

      .zoom-btn {
        width: 44px;
        height: 44px;
        font-size: 24px;
      }
    }
  