* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.feedback-container {
    background: #ffffff;
    padding: 30px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
    font-weight: 600;
}

p {
    color: #666;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    color: #555;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: none;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.rating span {
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px;
    color: #444;
}

.stars {
    display: flex;
}

.stars i {
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.stars i:hover,
.stars i.active {
    color: #f39c12;
}

button {
    background: #6a11cb;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
}