.new-dashboard {
    padding: 24px;
}

.dash-hero {
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dash-hero h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
}

.dash-hero p {
    margin: 0;
    color: #d1d5db;
    font-size: 15px;
}

.dash-btn {
    background: #ffffff;
    color: #111827 !important;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.dash-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eef0f4;
}

.dash-box p {
    margin: 0 0 10px;
    color: #6b7280;
    font-size: 14px;
}

.dash-box h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 700;
}

.dash-actions {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dash-actions a {
    background: #f3f4f6;
    color: #111827 !important;
    padding: 14px;
    text-align: center;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.dash-actions a:hover {
    background: #111827;
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .dash-grid,
    .dash-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .new-dashboard {
        padding: 14px;
    }

    .dash-grid,
    .dash-actions {
        grid-template-columns: 1fr;
    }

    .dash-hero h2 {
        font-size: 22px;
    }
}