body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 20px;
    color: #333;
}

nav {
    background-color: #333;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

form {
    background: white;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form input, form select, form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

form button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #218838;
}

h1, h2, h3 {
    text-align: center;
}

ul {
    max-width: 600px;
    margin: 0 auto;
}


.stars {
    display: inline-flex;
    flex-direction: row-reverse;
    user-select: none;
}

.stars input {
    display: none;
}

.stars label {
    font-size: 26px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

/* On hover, highlight the star hovered and all stars *before* it (to the left) */
.stars label:hover,
.stars label:hover ~ label {
    color: gold;
}

/* On checked, highlight star checked and all before it */
.stars input:checked ~ label {
    color: #ccc; /* reset */
}

.stars input:checked + label,
.stars input:checked + label ~ label {
    color: gold;
}







