.dashboard-section {
    background: #f5f5f5;
    min-height: 100vh;
    padding: 40px;
}

.dashboard-container {
    display: flex;
    gap: 30px;
}

.dashboard-sidebar {
    width: 260px;
    background: #111111;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-sidebar h2 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.dashboard-sidebar a {
    text-decoration: none;
    color: white;
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.dashboard-sidebar a:hover {
    background: #8B0000;
}

.dashboard-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.dashboard-content h1 {
    margin-bottom: 10px;
    color: #111111;
}

.dashboard-content p {
    color: #666;
    margin-bottom: 30px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.dashboard-card {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.dashboard-card h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

.dashboard-card p {
    font-size: 28px;
    font-weight: bold;
    color: #111111;
}

@media(max-width: 900px) {
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .dashboard-section {
        padding: 24px 4%;
    }

    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        padding: 20px;
        border-radius: 16px;
    }

    .dashboard-content {
        width: 100%;
        padding: 24px;
        border-radius: 16px;
    }

    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 18px 4%;
    }

    .dashboard-sidebar {
        gap: 10px;
    }

    .dashboard-sidebar a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .dashboard-content h1 {
        font-size: 24px;
    }

    .dashboard-content p {
        font-size: 14px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        padding: 22px 16px;
    }

    .dashboard-card h3 {
        font-size: 18px;
    }

    .dashboard-card p {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .dashboard-sidebar h2 {
        font-size: 20px;
    }

    .dashboard-content {
        padding: 18px 14px;
    }

    .dashboard-content h1 {
        font-size: 22px;
    }
}