header {
    height: 60px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    z-index: 1200;
}

.app-shell {
    display: flex;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
}

.site-sidebar {
    width: 266px;
    flex-shrink: 0;
    background: #fff;
    position: fixed;
    top: 60px;
    left: 0;
    height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 1100;
}

.site-content {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    margin-left: 266px;
}
.site-content-auth {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    margin-left: 20px;
}

.main-content {
    max-width: calc(100% - 10px);
}

.mobile-overlay {
    display: none;
}

.btn-close,
.btn {
    cursor: pointer;
}

.nav-link i {
    margin-right: 0.5rem;
}

.nav-link a {
    color: #DEE2E6;
}
nav .nav-link:hover:not(.active) {
    background-color: #fac46d;
    color: #000 !important;
    border-radius: 0.25rem;
}
nav .nav-link.active:hover {
    background-color: #FF7A00;
    color: #fff !important;
    border-radius: 0.25rem;
}
.nav-link.active {
    background-color: #ff9d00;
    color: #fff !important;
    border-radius: 0.25rem;
}

@media (max-width: 767.98px) {
    .app-shell {
        display: block;
    }

    .site-sidebar {
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(-110%);
        transition: transform 250ms ease-in-out;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    #menuToggle:checked ~ .app-shell .site-sidebar {
        transform: translateX(0);
    }

    .site-content {
        margin-left: 0;
    }

    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1090;
    }

    #menuToggle:not(:checked) ~ .app-shell .mobile-overlay {
        display: none;
    }
}
.profilePicture {
    width: 36px;
    height: 36px;

    border-radius: 50%;
    object-fit: cover;

    border: 2px solid #e9ecef;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: .5rem;

    cursor: pointer;
}

.profile-trigger:hover {
    opacity: .85;
}

.notification-menu {
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
}