/* Reviews Section */
.reviews-section {
    max-width: 800px;
    margin: 70px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Rating Summary */
.rating-summary {
    background: #eee;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.stars {
    font-size: 20px;
    color: gold;
}

/* Review Form */
#reviewForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center; /* Center align form fields */
}

#reviewForm input,
#reviewForm select,
#reviewForm textarea {
    padding: 10px;
    width: 100%; /* Reduce width to 80% for consistency */
    max-width: 800px; /* Set a max width */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Button */
button {
    padding: 10px 15px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Match width with form fields */
    max-width: 800px;
}

button:hover {
    background: darkred;
}

/* User Reviews */
#reviewsList {
    list-style: none;
    padding: 0;
}

#reviewsList li {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: left;
}





