/* bSuite — Custom Styles */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Active nav link styling via Blazor's .active class */
.active {
    color: #4f46e5 !important;
    background-color: #eef2ff !important;
}

/* Fade-in animation for page transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main > section {
    animation: fadeInUp 0.5s ease-out;
}

/* Details/summary arrow transition */
details summary::-webkit-details-marker {
    display: none;
}

details[open] > summary {
    border-bottom: 1px solid #e2e8f0;
}