/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

#rating .star {
    font-size: 40px;
    color: #ffc107;
    cursor: pointer;
    margin: 5px;
    transition: transform 0.2s;
}

#rating .star:hover {
    transform: scale(1.2);
}

#review-form.hidden {
    display: none;
}

#review-form textarea {
    width: 100%;
    height: 120px;
    margin-top: 15px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

#review-form button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

#review-form button:hover {
    background-color: #0056b3;
}

#message {
    margin-top: 20px;
    font-size: 18px;
    color: #28a745;
}
