/* استایل‌های سیستم امتیازدهی */
.wsm-rating-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-right: 4px solid #ffc107;
}

.wsm-rating-form h4 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.rating-stars {
    margin-bottom: 15px;
}

.rating-stars label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.stars-container {
    direction: ltr;
    display: inline-block;
}

.stars-container input[type="radio"] {
    display: none;
}

.stars-container label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0 2px;
}

.stars-container label:hover,
.stars-container label:hover ~ label {
    color: #ffc107;
}

.stars-container input[type="radio"]:checked ~ label {
    color: #ddd;
}

.stars-container input[type="radio"]:checked + label,
.stars-container input[type="radio"]:checked + label ~ label {
    color: #ffc107;
}

/* نمایش امتیازها */
.wsm-rating-display {
    direction: ltr;
    display: inline-block;
}

.wsm-rating-display .star {
    font-size: 16px;
    color: #ddd;
    margin: 0 1px;
}

.wsm-rating-display .star.full {
    color: #ffc107;
}

.wsm-rating-display .star.half {
    background: linear-gradient(90deg, #ffc107 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wsm-rating-display.rating-small .star {
    font-size: 14px;
}

.wsm-rating-display.rating-medium .star {
    font-size: 18px;
}

.wsm-rating-display.rating-large .star {
    font-size: 24px;
}

.rating-text {
    margin-right: 8px;
    color: #666;
    font-size: 14px;
}

/* بخش امتیازها در پنل مشتری */
.rating-section {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-top: 10px;
}

.wsm-ratings-list .rating-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-right: 4px solid #28a745;
}

.wsm-ratings-list .rating-item h4 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* آمار امتیاز متخصص */
.expert-rating-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.expert-rating-stats h3 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 20px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.expert-rating-stats .wsm-rating-display {
    margin-top: 10px;
}

.expert-rating-stats .wsm-rating-display .star {
    font-size: 24px;
    margin: 0 2px;
}

/* پیام‌های سیستم امتیازدهی */
.rating-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.rating-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.rating-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .expert-rating-stats {
        padding: 20px 15px;
    }
    
    .stat-value {
        font-size: 28px;
    }
}