.lenormand-reviews-container {
    margin: 20px 0;
}

.lenormand-review {
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}

.lenormand-review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: bold;
    margin-right: 15px;
}

.review-rating {
    margin-right: 15px;
}

.review-date {
    color: #777;
    font-size: 0.9em;
}

.star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: star;
}

.star-rating::before {
    content: "\73\73\73\73\73";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
    color: #ffc107;
}

.comment-form-rating {
    margin-bottom: 15px;
}

.comment-form-rating label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.comment-form-rating select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviewer-name,
    .review-rating,
    .review-date {
        margin-bottom: 5px;
    }
}