/* نظام الطيبات - أرقام النظام وإحصائيات */
.nizam-numbers-box {
    margin: 2rem 0;
}

.nizam-numbers-heading {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.nizam-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
}

.stat-item-allowed {
    background: rgba(22, 101, 52, 0.1);
}

.stat-item-forbidden {
    background: rgba(185, 28, 28, 0.1);
}

.stat-item-restricted {
    background: rgba(234, 179, 8, 0.1);
}

.stat-item-total {
    background: rgba(37, 99, 235, 0.1);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.stat-num-allowed {
    color: #166534;
}

.stat-num-forbidden {
    color: #b91c1c;
}

.stat-num-restricted {
    color: #eab308;
}

.stat-num-total {
    color: #2563eb;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.nizam-numbers-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* التحذير الطبي */
.medical-warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 8px;
}

/* Dark mode support */
[data-theme="dark"] .stat-label {
    color: #aaa;
}

[data-theme="dark"] .medical-warning-box {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.4);
}
