/* Reduce logo size to fit nav bar */
.navbar-brand img,
.brand-logo img,
.logo,
img.logo {
    max-height: 38px !important;
    width: auto !important;
}

/* Fix menu text being white on white */
.dropdown-menu .dropdown-item,
.dropdown-menu a,
.ani-acc-menu .dropdown-item,
.ani-acc-menu a {
    color: #333 !important;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu a:hover {
    color: #fff !important;
    background-color: #ff003c !important;
}

/* Sidebar nav items */
.sidebar .nav-link,
.sidebar-link,
.nav-sidebar a,
.sidebar a:not(.btn) {
    color: #333 !important;
}
.sidebar .nav-link:hover,
.sidebar-link:hover {
    color: #ff003c !important;
}

/* Dark mode adjustments */
[data-bs-theme="dark"] .dropdown-menu .dropdown-item,
[data-bs-theme="dark"] .sidebar .nav-link,
[data-bs-theme="dark"] .sidebar a:not(.btn) {
    color: #e2e8f0 !important;
}
[data-bs-theme="dark"] .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 0, 60, 0.3) !important;
    color: white !important;
}
