
.vote-box {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 6px 0;
}
.vote-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vote-btn {
    background: #fff;
    border: 1px solid #ccc;
    padding: 4px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 40px;
    height: 40px;
    text-align: center;
}
.vote-btn.voted {
    background: #d4edda;
    border-color: #28a745;
}
.vote-label {
    margin-top: 2px;
    font-size: 12px;
    color: #222;
    text-align: center;
}
