.dashboard-body {
    background: #f9fafb;
    font-family: system-ui, sans-serif;
}

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: #364C84;
    color: #fff;
    padding: 2rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.sidebar nav a,
.sidebar nav button {
    display: block;
    color: #fff;
    padding: 0.75rem 0;
    text-decoration: none;
    font-weight: 500;
}

.sidebar nav a:hover {
    opacity: 0.85;
}

.logout {
    background: none;
    border: none;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
}

.dashboard-content {
    flex: 1;
    padding: 2.5rem;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #364C84;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 0.95rem;
    color: #6b7280;
}

.stat-card p {
    font-size: 2rem;
    font-weight: 700;
    color: #364C84;
}

.table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
}

.table thead {
    background: #f3f4f6;
}

.status.pending { color: #d97706; }
.status.approved { color: #059669; }
.status.rejected { color: #dc2626; }
