body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.rating-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.stars i {
    color: #ddd;
    font-size: 30px;
    margin: 0 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.stars i.active,
.stars i.hover {
    color: #ffc107;
}

.message {
    color: #28a745;
    font-weight: bold;
    margin-top: 20px;
    font-size: 18px;
}