/* =====================================================
   DASHBOARD - Estilos especificos del dashboard
   ===================================================== */

.dashboard-container {
    padding: 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dashboard-title {
    font-size: 28px;
    font-weight: 700;
    color: #4459D7;
    margin: 0;
    font-family: 'Public Sans', sans-serif;
}

.dashboard-subtitle {
    font-size: 14px;
    color: #6b6b6b;
    margin: 4px 0 0 0;
}

.current-date {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 500;
}

/* --- Charts Row --- */
.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* --- Tables Row --- */
.tables-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* --- Quick Actions --- */
.quick-actions {
    margin-bottom: 32px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* --- Quick Fade Container --- */
#quickFadeContainer {
    transition: opacity .35s ease-in-out;
    opacity: 1;
}

#quickFadeContainer.fade-out {
    opacity: 0;
}

#quickFadeContainer.fade-in {
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .charts-row,
    .tables-row {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
