/* ==============================================
   DASHBOARD PAGE STYLES
   استایل‌های اختصاصی صفحه داشبورد
   ============================================== */

/* Chart container */
.chart-container {
    position: relative;
    height: 260px;
}

.chart-container canvas {
    max-height: 260px;
}

/* Welcome banner */
.welcome-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.welcome-banner::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 60px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.welcome-banner h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.welcome-banner p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

.welcome-date {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 10px;
}

/* Progress mini bar in stat cards */
.stat-progress {
    height: 4px;
    background: var(--border-color);
    border-radius: 4px;
    margin-top: 14px;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.card-primary .stat-progress-bar { background: var(--primary); }
.card-success .stat-progress-bar { background: var(--success); }
.card-warning .stat-progress-bar { background: var(--warning); }
.card-secondary .stat-progress-bar { background: var(--secondary); }
