.site-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--dashborad-border);
    min-height: 64px;
    display: flex;
    align-items: center;
    max-width: 100vw;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1021;
}

.site-header-inner {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #f1f5f9;
    text-decoration: none;
}

.site-logo:hover {
    color: #fff;
}

.site-logo-mark {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: var(--date-bg);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.site-logo-text {
    font-size: 1rem;
    font-weight: 600;
}

.site-header-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-user-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.site-user-name {
    color: #dce2ea;
    font-size: .78rem;
    font-weight: 500;
}

.site-user-role {
    color: #7f8a9a;
    font-size: .68rem;
}

.site-logout {
    padding: .4rem .7rem;
    border: 1px solid #3a4659;
    border-radius: .45rem;
    color: #aeb9c8;
    font-size: .72rem;
    text-decoration: none;
    transition:
            background-color .15s ease,
            color .15s ease,
            border-color .15s ease;
}

.site-logout:hover {
    background: var(--dashborad-border);
    border-color: #46556b;
    color: #fff;
}

.site-main {
    min-height: calc(100vh - 64px - 60px);
    background: var(--dashboard-primary);
}

.site-footer {
    background: var(--dashboard-primary);
    border-top: 1px solid var(--dashborad-border);
    color: #7f8a9a;
    font-size: .7rem;
}

.site-footer-inner {
    width: 100%;
    max-width: 1620px;
    min-height: 60px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer-links {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-separator {
    color: #46536a;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #18202d;
}

::-webkit-scrollbar-thumb {
    background: #303c4f;
    border-radius: 8px;
    border: 2px solid #18202d;
}

::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #303c4f #18202d;
}

@media (max-width: 767.98px) {
    .site-header-inner {
        padding: 0 1rem;
    }

    .site-user-info {
        display: none;
    }

    .site-footer-inner {
        min-height: 70px;
        padding: .75rem 1rem;
        flex-direction: column;
        justify-content: center;
        gap: .35rem;
    }
}