.rating-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stars {
    display: inline-flex;
    margin: 10px 0;
    font-size: 2rem;
    cursor: pointer;
    color: #ccc; /* Default gray for unselected stars */
}

.stars i {
    padding: 5px;
    transition: color 0.2s ease-in-out;
}

.stars i.full {
    color: #ffcc00; /* Yellow color for selected stars */
}

.rating-output {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}
