/* dmm-reviews.css */

.dmm-single-review-block {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dmm-review-title {
    font-size: 1.2em;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 5px;
}

.dmm-review-rating {
    font-size: 1em;
    color: #ff9900;
    font-weight: bold;
    margin-bottom: 10px;
    display: block; /* 評価を独立した行に表示 */
}

.dmm-review-text {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dmm-reviewer-info {
    font-size: 0.85em;
    color: #777;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.dmm-reviewer-name,
.dmm-review-date {
    display: inline-block;
    margin-left: 10px;
}

.dmm-star-rating {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.2em;
    letter-spacing: 2px; /* Space out the stars a bit */
}