body.snowlit-admin {
    background: #f7f1e8;
    color: #2f2a25;
}

.snowlit-shell {
    min-height: 100vh;
    display: flex;
}

.snowlit-sidebar {
    width: 220px;
    background: #3b332c;
    color: #fff8ef;
    padding: 18px 14px;
}

.snowlit-brand {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
}

.snowlit-sidebar a {
    display: block;
    color: #fff8ef;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.snowlit-sidebar a:hover,
.snowlit-sidebar a.active {
    background: #7d5f45;
    text-decoration: none;
}

.snowlit-main {
    flex: 1;
    min-width: 0;
}

.snowlit-topbar {
    height: 56px;
    background: #fffaf3;
    border-bottom: 1px solid #e6dacb;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.snowlit-content {
    padding: 18px 20px;
}

.snowlit-card {
    background: #fffaf3;
    border: 1px solid #e6dacb;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
}

.snowlit-muted {
    color: #887969;
}

.snowlit-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 14px;
}

.snowlit-stat-value {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.snowlit-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1e8;
}

.snowlit-login-panel {
    width: 380px;
    background: #fffaf3;
    border: 1px solid #e6dacb;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(59, 51, 44, 0.12);
}

.snowlit-detail-table th {
    width: 180px;
    color: #6f6253;
    background: #fbf6ee;
}

@media (max-width: 900px) {
    .snowlit-sidebar {
        width: 180px;
    }

    .snowlit-stat-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}
