 body {
     font-family: Arial, sans-serif;
     background-color: #e3cde6;
     margin: 0;
     padding: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
 }

 .review-container {
    background-image: url("https://raw.githubusercontent.com/inno6969/Salon-web/refs/heads/main/Blissful%20beauty%20SALON(bckG2).png");
        background-position: center;
        background-size: cover;
     background-color: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
     width: 80%;
     max-width: 600px;
 }

 .review-container h2 {
     text-align: center;
     color: #2d4125;
     margin-bottom: 20px;
 }

 .rating {
     display: flex;
     justify-content: center;
     margin-bottom: 20px;
 }

 .rating input {
     display: none;
 }

 .rating label {
     font-size: 30px;
     color: #ccc;
     cursor: pointer;
     transition: color 0.3s;
 }

 .rating input:checked~label,
 .rating input:hover~label,
 .rating input:hover~label~label {
     color: #ffc700;
 }

 .review-form {
     display: flex;
     flex-direction: column;
 }

 .review-form textarea {
     resize: vertical;
     min-height: 100px;
     padding: 10px;
     font-size: 16px;
     border: 1px solid #ccc;
     border-radius: 8px;
     margin-bottom: 20px;
 }

 .submit-button,
 .services-button {
     background-color: #f15fcd;
     color: white;
     border: none;
     padding: 15px 30px;
     font-size: 18px;
     cursor: pointer;
     transition: background-color 0.3s ease;
     margin-top: 20px;
     text-align: center;
 }

 .submit-button:hover,
 .services-button:hover {
     background-color: #333;
 }

 .message-sent {
     display: none;
     color: rgb(10, 255, 10);
     margin-top: 20px;
     text-align: top;
 }

 footer {
     background-color: #333;
     color: #d0bcda;
     text-align: center;
     padding: 10px 0;
 }
