/* Wrapper style for the widget to set max width */
.reviews-widget-wrapper {
    max-width: 500px;
    margin: auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Styles for the select dropdown */
.reviews-location-select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

/* Container for the reviews */
#reviews-container {
    margin-top: 10px;
}

/* Individual review block */
.review {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Review title */
.review-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #0073aa;
}

/* Review content */
.review-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.review-content img.alignnone {
    margin: 0;
}

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