/* Leaflet map-specific styles */
#map {
    width: 100%;
}

/* Leaflet popup styling */
.leaflet-popup-content {
    font-family: inherit;
    font-size: 0.9rem;
    color: #1f2937;
}

.leaflet-popup-content b {
    font-weight: 600;
}

/* Dark mode for Leaflet popups */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #1f2937;
    color: white;
}

.leaflet-popup-content b {
    color: white;
}

.leaflet-popup-close-button {
    color: white !important;
}

.leaflet-popup-close-button:hover {
    color: #60a5fa !important;
}

/* Dark mode for form selects */
select option {
    background-color: #1f2937;
    color: white;
}

/* Dark mode scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}