/* ===== Dashboard Personal — CSS consolidat (hardcoded, fără variabile) ===== */

:root {
    --dash-bg: #f8f9fa;
    --dash-sidebar-bg: #ffffff;
    --dash-primary: #1a2a6c;
    --dash-primary-light: #f0f4ff;
    --dash-secondary: #6b7280;
    --dash-text-dark: #1f2937;
    --dash-border: #e5e7eb;
    --dash-success: #10b981;
    --dash-warning: #f97316;
    --dash-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Section title */
.dash-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

/* Stat cards row */
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dash-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dash-stat-card .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.dash-stat-card .stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dash-stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

/* Generic card */
.dash-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

/* Buttons */
.btn-dash-primary {
    background: #1a2a6c;
    color: #fff;
    border: 1px solid #1a2a6c;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.btn-dash-primary:hover {
    background: #152252;
    color: #fff;
    border-color: #152252;
}

.btn-dash-outline {
    background: #fff;
    color: #1a2a6c;
    border: 1px solid #1a2a6c;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.btn-dash-outline:hover {
    background: #1a2a6c;
    color: #fff;
}

/* Placeholder */
.dash-placeholder {
    text-align: center;
    padding: 4rem 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}

.dash-placeholder i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.dash-placeholder h3 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dash-placeholder p {
    color: #6b7280;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile sidebar (folosit în pagini vechi) */
@media (max-width: 768px) {
    .dash-content {
        padding: 1rem;
    }
}