/**
 * Merchant Restrictions Styling
 * ============================== 
 * 
 * تنسيق إشعارات الكوتا والحدود في لوحة التحكم
 */

/* إشعار الكوتا */
.atbd-listing-quota {
    background: #f8f9fa;
    padding: 15px;
    margin: 15px 0;
    border-radius: 6px;
    border-right: 4px solid #007bff;
    font-family: 'Tajwal', sans-serif;
}

.atbd-listing-quota h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.atbd-listing-quota p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

/* شريط التقدم */
.atbd-listing-quota .progress-bar {
    background: #e9ecef;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.atbd-listing-quota .progress-fill {
    background: linear-gradient(90deg, #007bff, #0056b3);
    height: 100%;
    transition: width 0.3s ease;
}

/* حالة النجاح - متجر موثق */
.atbd-listing-quota.verified {
    background: #d4edda;
    border-right-color: #28a745;
}

.atbd-listing-quota.verified h4,
.atbd-listing-quota.verified p {
    color: #155724;
}

/* حالة التحذير - قريب من الحد */
.atbd-listing-quota.warning {
    background: #fff3cd;
    border-right-color: #ffc107;
}

.atbd-listing-quota.warning h4 {
    color: #856404;
}

/* حالة الخطر - وصل للحد */
.atbd-listing-quota.danger {
    background: #f8d7da;
    border-right-color: #dc3545;
}

.atbd-listing-quota.danger h4 {
    color: #721c24;
}

/* زر الترقية */
.atbd-listing-quota .upgrade-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #007bff;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.atbd-listing-quota .upgrade-btn:hover {
    background: #0056b3;
    text-decoration: none;
}

/* رسالة الحد الأقصى */
.atbd_listing_limit_message {
    background: #fff3cd;
    border-right: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-family: 'Tajwal', sans-serif;
}

.atbd_listing_limit_message strong {
    color: #856404;
}

.atbd_listing_limit_message a {
    color: #0073aa;
    font-weight: bold;
    text-decoration: none;
}

.atbd_listing_limit_message a:hover {
    text-decoration: underline;
}

/* تحسين للجوال */
@media (max-width: 768px) {
    .atbd-listing-quota {
        padding: 12px;
        margin: 12px 0;
    }
    
    .atbd-listing-quota h4 {
        font-size: 15px;
    }
    
    .atbd-listing-quota p {
        font-size: 13px;
    }
    
    .atbd-listing-quota .upgrade-btn {
        display: block;
        text-align: center;
    }
}
