body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #eab308;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.pac-container {
    z-index: 99999 !important;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f1f1;
}

.tab-btn {
    @apply px-6 py-3 font-semibold text-gray-600 border-b-2 border-transparent transition;
}

.tab-btn.active {
    @apply text-yellow-600 border-yellow-600;
}

#toast-notification {
    transition: all 0.3s ease-out;
    transform: translateY(100%);
    opacity: 0;
}

#toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}
