body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Title styling */
h1 {
    margin-top: 20px;
}

/* Category card styling */
.category {
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 10px;
    width: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Category title styling */
.category-title {
    margin-bottom: 10px;
    font-size: 24px;
}

/* Rating container styling */
.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Default rating icon styling */
.rating span {
    font-size: 20px;
    filter: grayscale(100%);
}

/* Selected icon styling */
.rating span.selected {
    filter: none;
}
