/* Basic styling for the review form */
.srp-review-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.srp-review-form label {
    display: block;
    margin-bottom: 10px;
}

.um-reviews-rate {
    display: flex;
    justify-content: flex-start;
}

.um-reviews-rate i {
    font-size: 24px;
    color: #ddd;
    margin-right: 5px;
    cursor: pointer;
}

.um-reviews-rate i.star-on-png {
    color: gold;
}

.srp-review-form textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}

.srp-review-form input[type="submit"] {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.srp-review-form input[type="submit"]:hover {
    background-color: #005a8d;
}

/* Ensure only 5 stars are shown */
.um-reviews-rate {
    display: inline-flex;
}

.um-reviews-rate i {
    display: block;
    width: 24px; /* Set width for consistent sizing */
    height: 24px; /* Set height for consistent sizing */
}

/* Hide extra stars if they appear */
.um-reviews-rate i:nth-of-type(n+6) {
    display: none;
}

i.srp-review-form-description {
    font-size: 14px;
}

label.make_private_label {
    font-size: 15px;
}

.srp-message {
    margin-top: 2px;
    padding: 4px 9px;
    border-radius: 4px;
    display: none;
    font-size: 15px;
}

.srp-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.srp-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#review-preview {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.srp-review h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.session-review-item {
    border: 1px solid #ddd;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

.srp-button {
    background: #0073aa;
    padding: 5px 10px !important;
    border-radius: 5px;
}

input#make_pivate {
    width: auto !important;
}

.session-review-group {
    border: 1px solid #d5d8dc;
    border-radius: 4px;
    padding: 10px 20px;
    margin-bottom: 10px;
}