.stars {
            display: flex;
            cursor: pointer;
            font-size: 2em;
            color: lightgray; /* Default star color */
        }
        input[type='radio'] {
            display: none; /* Hide the actual radio buttons */
        }
        .star {
            margin: 0 5px;
            transition: color 0.2s;
        }
        /* Change color based on selection */
        input[type='radio']:checked ~ .star {
            color: gold; /* Color when filled (selected) */
        }

form, input, textarea {
    border: none;
    outline: none;
}