body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.rating-container {
    display: flex;
    background-color: #e0e0e0;
    padding: 0;
    border-radius: 2px;
    overflow: hidden;
}

.num-box {
    width: 60px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.num-box.active {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    background: radial-gradient(circle, #ffffff 0%, #b8b8b8 100%);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.15);
}

.num-box.dimmed {
    font-size: 18px;
    color: #888;
}