/* Custom Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navbar active link styling */
.nav-link.active {
    color: #4f46e5;
    border-bottom: 2px solid #4f46e5;
    padding-bottom: 4px;
}

/* Animation classes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-in {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-in-from-top {
    animation-name: slideInFromTop;
}

.slide-in-from-right {
    animation-name: slideInFromRight;
}

.zoom-in {
    animation-name: zoomIn;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Time slot button active state */
.time-slot.active {
    background-color: #4f46e5;
    border-color: #4f46e5;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.time-slot {
    background-color: white;
    border: 1px solid #f3f4f6;
    color: #4b5563;
}

.time-slot:hover {
    border-color: #c7d2fe;
}

/* FAQ accordion */
.faq-item {
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

/* Admin panel icon color */
.admin-icon.active {
    color: #4f46e5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .time-slot {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}




