/* reviews-modal.css – Force modal center + scroll lock */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    overflow: hidden;
}
.review-modal.show {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.modal-card {
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
    margin: 0 auto;
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
}
.close-modal {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    z-index: 10;
}
.close-modal:hover {
    color: #000;
}
.modal-card h3 {
    margin-top: 0;
    padding-right: 30px;
}
.star-selector span {
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
    margin-right: 5px;
    transition: color 0.2s;
}
.star-selector span.selected,
.star-selector span.hover {
    color: #ffb400 !important;
}
.review-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}
.review-stars {
    color: #ffb400;
}
.btn-review-sm {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    margin-top: 10px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: #2c6e2c;
}
.btn-review-sm:hover {
    background: #e0e0e0;
}
.btn-submit {
    background: #25d366;
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
}
.form-control {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 12px;
    border-radius: 30px;
    border: 1px solid #ccc;
}