/* Custom styles for the calculator */
.mapboxgl-ctrl-geocoder {
    width: 100% !important;
    max-width: 100% !important;
}

.mapboxgl-ctrl-geocoder input {
    height: 40px !important;
    padding: 6px 35px !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
}

.mapboxgl-ctrl-geocoder--icon {
    top: 8px !important;
}

.mapboxgl-ctrl-geocoder--icon-search {
    left: 8px !important;
}

.mapboxgl-ctrl-geocoder--icon-close {
    right: 8px !important;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    font-family: 'Inter', sans-serif;
}

#map {
    background-color: #111827; /* bg-gray-900 */
    color: white;
}

.tab-active {
    background-color: #111827; /* bg-gray-900 */
    color: white;
} 