/* 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;
}

/* No Reviews Message Styles */
.srp-no-reviews-card {
    padding: 2rem;
    text-align: center;
    max-width: 7500px;
    margin: 2rem auto;
    transition: all 0.3s ease;
}

.srp-no-reviews-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #1a6566;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.srp-no-reviews-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.srp-no-reviews-message {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.srp-no-reviews-info {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.srp-no-reviews-info small {
    color: #94a3b8;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .srp-no-reviews-card {
        margin: 1rem;
        padding: 1.5rem;
    }

    .srp-no-reviews-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .srp-no-reviews-title {
        font-size: 1.25rem;
    }

    .srp-no-reviews-message {
        font-size: 0.9rem;
    }
}