/* Custom Styles */

body {
    background-color: #ffffff;
}

/* Ensure the router transitions feel snappy */
#content {
    animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-link.active {
    font-weight: bold;
    color: #fff !important;
}