/* .custom-reviews {
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 20px;
}
.review-card {
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.star-rating {
    font-size: 24px;
    margin: 10px 0;
}
.star {
    cursor: pointer;
    transition: all 0.2s;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    position: relative;
}
.popup-content.wide {
    max-width: 800px;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}
#review_text {
    width: 100%;
    height: 100px;
    margin: 10px 0;
    padding: 10px;
}
button {
    padding: 8px 15px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.review-links button {
    margin-right: 10px;
}
#review_msg {
    margin-top: 10px;
    padding: 5px;
}
 */