/* ============================================
   استایل‌های بخش عمومی - افزونه مقاله‌سنج
   کپی‌رایت (c) 2025 AliReza EbadiMajd
   وب‌سایت: https://ebadimajd.ir
   مجوز: GPL v2 or later
   ============================================ */

/* ===== بخش اصلی ===== */
.article-rater-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    direction: rtl;
}

/* ===== عنوان ===== */
.article-rater-title {
    color: #333333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* ===== دکمه‌ها ===== */
.rating-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.rating-btn {
    padding: 10px 25px;
    margin: 5px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* استایل دکمه‌ها بدون رنگ (اگر تنظیمات غیرفعال باشد) */
.rating-btn:not(.has-color) {
    background: #e0e0e0;
    color: #333;
}

.rating-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.rating-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== پیام تشکر (وسط‌چین) ===== */
.thank-you-message {
    line-height: 1.85;
    color: #2c3e32;
    margin-bottom: 1.3rem;
    text-align: center;
    padding-right: 10px;
    font-weight: bold;
    font-size: 16px;
}

/* ===== پیام موفقیت ===== */
.rating-message {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.rating-message.success {
    color: #28a745;
}

.rating-message.error {
    color: #dc3545;
}

/* ===== آمار ===== */
.rating-stats {
    margin-top: 15px;
    font-size: 14px;
    color: #666666;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.stats-total {
    font-weight: 500;
}

.stats-detail {
    direction: ltr;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .rating-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .article-rater-title {
        font-size: 16px;
    }
    
    .rating-stats {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .rating-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rating-btn {
        width: 80%;
        margin: 3px 0;
    }
}

/* ===== استایل‌های مربوط به محتوای مقاله ===== */
.page .page-container .article-body p {
    line-height: 1.85;
    color: #2c3e32;
    margin-bottom: 1.3rem;
    text-align: center !important;
    padding-right: 10px;
}
