body {
    font-family: 'Inter', sans-serif;
}
/* Style for scrollbar in locations container */
.locations-container::-webkit-scrollbar {
    width: 8px;
}
.locations-container::-webkit-scrollbar-track {
    background: #f1f5f9; /* gray-100 */
    border-radius: 10px;
}
.locations-container::-webkit-scrollbar-thumb {
    background: #94a3b8; /* gray-400 */
    border-radius: 10px;
}
.locations-container::-webkit-scrollbar-thumb:hover {
    background: #64748b; /* gray-500 */
}
.dark .locations-container::-webkit-scrollbar-track {
    background: #1f2937; /* gray-800 */
}
.dark .locations-container::-webkit-scrollbar-thumb {
    background: #4b5563; /* gray-600 */
}
.dark .locations-container::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* gray-500 */
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.modal-overlay.open .modal-content {
    transform: scale(1);
}
