/* Rating Modal Styles */
.wmmb-rating-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.wmmb-rating-container {
    background-color: #1a1a1a;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px;
}

.wmmb-rating-overlay.is-visible .wmmb-rating-container {
    transform: translateY(0);
    opacity: 1;
}

/* Close Button */
.wmmb-rating-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.wmmb-rating-close:hover {
    color: #fff;
}

/* Header */
.wmmb-rating-header h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Body */
.wmmb-rating-body p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Stars */
.wmmb-star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 32px;
    cursor: pointer;
}

.wmmb-star-rating .star {
    color: #444;
    transition: color 0.2s;
}

.wmmb-star-rating .star:hover,
.wmmb-star-rating .star.active {
    color: #ffcc00; /* Gold */
}
