/* public/css/dashboard.css */

.dashboard-header {
    margin-bottom: 20px;
}

.dashboard-title {
    font-size: 24px;
    font-weight: 600;
    color: #2f3a4c;
    margin: 0 0 4px 0;
}

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

.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.widget-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(105, 142, 204, 0.08);
    border: 1px solid #e1e4ea;
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #2f3a4c;
    margin: 0 0 8px 0;
}

.widget-text {
    font-size: 14px;
    color: #555f6f;
    margin: 0;
}
