
h2 {
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Container for ratings - two columns grid */
.ratings-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    margin-bottom: 20px;
}

/* Each rating row flex aligned */
.rating-row {
    display: flex;
    align-items: center;
}

/* Label fixed width and right padding */
.rating-label {
    width: 90px;
    font-weight: 600;
    margin-right: 10px;
    font-family: Arial, sans-serif;
}

/* Star rating flex in reverse for hover */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* Hide native radio buttons */
.star-rating input[type="radio"] {
    display: none;
}

/* Star icons styling */
.star-rating label {
    font-size: 1.6em;
    color: #ccc;
    cursor: pointer;
    padding: 0 4px;
    user-select: none;
    transition: color 0.2s ease-in-out;
}

/* Highlight stars when checked or hovered */
.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f5b301;
}

/* Review textarea styling */
.review-text textarea {
    width: 100%;
    height: 100px;
    padding: 8px;
    font-size: 1rem;
    resize: vertical;
    font-family: Arial, sans-serif;
}

/* Checkbox label */
.save-info-label {
    font-weight: 600;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

/* Submit button */
.submit-btn {
    background-color: #f5b301;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.submit-btn:hover {
    background-color: #d49900;
}


