/* Dashboard - Stylish Monotone */

.dashboard-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: var(--bg-body);
    border-right: 1px solid var(--border-light);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 48px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-item:hover {
    color: var(--text-main);
}

.nav-item.active {
    color: var(--text-main);
    font-weight: 600;
}

/* Main Content */
.main-content {
    padding: 40px 60px;
    background: var(--bg-body);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align baseline */
    margin-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

.top-bar h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1;
}

.user-profile-header {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats & Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    /* Grid lines effect */
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
}

.stat-box {
    background: var(--bg-card);
    padding: 24px;
}

.stat-box span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.stat-box div {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}