/* Modern Reviews Styles */

/* Rating Bars */
.modeo-rating-bar {
    height: 8px;
    background-color: #f3f4f6;
    /* gray-100 */
    border-radius: 9999px;
    overflow: hidden;
    flex-grow: 1;
}

.modeo-rating-bar-fill {
    height: 100%;
    background-color: #fbbf24;
    /* amber-400 */
    border-radius: 9999px;
    transition: width 0.3s ease;
}

/* Verified Badge */
.modeo-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #16a34a;
    /* green-600 */
    font-size: 0.875rem;
    font-weight: 500;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #d1d5db;
    /* gray-300 */
    transition: color 0.15s;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #fbbf24;
    /* amber-400 */
}

/* Base Review Card Tweaks */
.review-item {
    transition: background-color 0.2s;
}

.review-item:hover {
    background-color: #f9fafb;
    /* gray-50 */
}