/**
 * Dashboard Stats & Cards Styles
 * استایل‌های کارت‌های آماری داشبورد
 */

/* Welcome Banner */
.adj-welcome-banner {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.1), 0 2px 4px -1px rgba(139, 92, 246, 0.06);
}

.adj-welcome-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.adj-welcome-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

/* Stats Grid */
.adj-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 20px 10px;
}

/* Stat Card */
.adj-stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
}

.adj-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.adj-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adj-stat-primary .adj-stat-icon {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #8B5CF6;
}

.adj-stat-success .adj-stat-icon {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #10B981;
}

.adj-stat-warning .adj-stat-icon {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #F59E0B;
}

.adj-stat-info .adj-stat-icon {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #3B82F6;
}

.adj-stat-content {
    flex: 1;
}

.adj-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 4px;
}

.adj-stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Active Consultation Card */
.adj-active-consultation-card {
    margin-bottom: 24px;
}

.adj-active-consultation-card .adj-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.adj-consultation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.adj-consultation-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.adj-detail-label {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
}

.adj-detail-value {
    font-size: 15px;
    color: #111827;
    font-weight: 600;
}

/* Alert */
.adj-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.adj-alert svg {
    flex-shrink: 0;
}

.adj-alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.adj-alert-info {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

.adj-alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

/* Responsive */
@media (max-width: 768px) {
    .adj-welcome-banner {
        padding: 24px;
    }
    
    .adj-welcome-content h2 {
        font-size: 24px;
    }
    
    .adj-welcome-content p {
        font-size: 14px;
    }
    
    .adj-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .adj-stat-card {
        padding: 20px;
    }
    
    .adj-stat-value {
        font-size: 28px;
    }
    
    .adj-consultation-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
