﻿body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb; /* bg-gray-50 */
}

.toggle-btn-active {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.content-hidden {
    display: none !important;
}

#map {
    height: 100%;
    min-height: 400px;
    z-index: 0;
}
.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f0f7ff;
    color: #4a90e2;
    padding-left: 22px;
}

.suggestion-item::before {
    content: '📍';
    margin-right: 10px;
    font-size: 14px;
}

.loading-indicator, .no-results, .api-error {
    padding: 14px 18px;
    color: #7f8c8d;
    font-style: italic;
    display: flex;
    align-items: center;
}

    .loading-indicator::before {
        content: '⏳';
        margin-right: 10px;
    }