body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

#app {
    max-width: 500;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #8e44ad;
    padding-bottom: 10px;
}

form div {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #34495e;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #8e44ad;
    outline: none;
}

button {
    padding: 12px 20px;
    background-color: #8e44ad;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #5e3370;
}

#star-rating img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

#star-rating img:hover {
    filter: grayscale(0%);
}

#star-rating img:hover ~ img {
    filter: grayscale(100%);
}

feedbackList {
    list-style-type: none; /* Ensure no bullet points */
    padding: 0;
    display: none; /* Initially hidden */
}

feedbackList li {
    padding: 10px;
    border-bottom: 1px solid #bdc3c7;
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Vertically center items */
}

feedbackList li:last-child {
    border-bottom: none;
}

/* New styles for checkboxes */
input[type="checkbox"] {
    appearance: none; /* Remove default styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-left: 0;
    border: 1px solid #bdc3c7;
    border-radius: 2px;
    background-color: #fff;
    vertical-align: middle;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #8e44ad;
    border-color: #8e44ad;
}
