/* 
   NAVBAR.CSS
   Styles for the top navigation bar — base styles in design_system_v1.css
*/
.app-content-header {
    display: none !important;
}

/* ========== THEME SWITCHER TOGGLE ========== */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #334155;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--border-color);
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 16px;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.theme-icon {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 8px;
}

/* ========== JAZZMIN NAVBAR OVERRIDES ========== */
.main-header.navbar {
    background-color: #ffffff !important;
    background: #ffffff !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.main-header.navbar i,
.main-header.navbar {
    color: #000000 !important;
}

.main-header.navbar .nav-link,
.main-header.navbar .nav-link * {
    color: #000000 !important;
}