/* Existing Styles */
.soundmd-review-form {
    background-color: #ffffff;
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 100%;
    margin: 20px 0;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-bottom: 15px;
}

.rating > input {
    display: none;
}

.rating > label {
    font-size: 32px;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0 2px;
}

.rating > input:checked ~ label,
.rating > label:hover,
.rating > label:hover ~ label {
    color: #ffc107;
}

.review-textarea {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.submit-review-btn {
    background-color: #0073aa;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

.submit-review-btn:hover {
    background-color: #005177;
}

#review-message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

/* New Review List Styles */
.soundmd-reviews-list {
    margin-top: 40px;
}

.average-rating {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.avg-score {
    font-weight: bold;
    color: #333;
}

.review-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.review-header strong {
    font-size: 16px;
}

.review-date {
    color: #888;
    font-size: 0.9em;
    margin-left: auto;
}

.review-body {
    color: #555;
    line-height: 1.6;
}
