@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#map {
    height: 300px;
    width: 100%;
}

/* Google Maps Autocomplete Styling */
.pac-container {
    font-family: 'Inter', sans-serif;
    border-radius: 0.5rem;
    /* rounded-lg */
    margin-top: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* shadow-md */
    border: 1px solid #e5e7eb;
    /* border-gray-200 */
    background-color: white;
    z-index: 9999 !important;
    /* Ensure it floats above everything */
}

.pac-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-top: 1px solid #f3f4f6;
    font-size: 0.875rem;
    /* text-sm */
    color: #374151;
    /* text-gray-700 */
}

.pac-item:hover {
    background-color: #f9fafb;
    /* bg-gray-50 */
}

.pac-item-query {
    font-size: 0.875rem;
    color: #111827;
    /* text-gray-900 */
    font-weight: 500;
}

.pac-icon {
    margin-right: 0.75rem;
}