/* styles.css */
#map { height: 100vh; width: 100%; }
    .custom-popup .leaflet-popup-content-wrapper {
      background: white;
      color: #333;
      border-radius: 10px;
      padding: 0;
      box-shadow: 0 3px 14px rgba(0,0,0,0.2);
    }
    .custom-popup .leaflet-popup-content {
      margin: 0;
      width: 220px !important;
    }
    .custom-popup .leaflet-popup-tip-container {
      display: none;
    }
    .popup-option {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    .popup-option:hover {
      background-color: #f0f0f0;
    }
    .popup-option-icon {
      font-size: 20px;
      margin-right: 12px;
      width: 24px;
      text-align: center;
    }
    .emoji-marker {
      font-size: 24px;
      text-align: center;
      line-height: 24px;
    }
    .marker-popup .leaflet-popup-content-wrapper {
      background: white;
      color: #333;
      border-radius: 10px;
      padding: 10px;
      font-family: Inter, sans-serif;
      font-size: 14px;
      box-shadow: 0 3px 14px rgba(0,0,0,0.2);
    }
    .marker-popup .leaflet-popup-content {
      margin: 0;
    }
    .marker-popup .leaflet-popup-tip-container {
      display: none;
    }
    .ad-link {
      display: inline-block;
      margin-top: 10px;
      color: #3b82f6;
    }
    .ad-link:hover {
      text-decoration: underline;
    }
    .comment-input {
      width: 100%;
      padding: 8px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-family: Inter, sans-serif;
      font-size: 14px;
    }
    .submit-button {
      display: block;
      width: 100%;
      padding: 8px;
      margin-top: 10px;
      background-color: #3b82f6;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-family: Inter, sans-serif;
      font-size: 14px;
    }
    .submit-button:hover {
      background-color: #2563eb;
    }
