.vote-system {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

.vote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    flex: 1;
    height: 50px;
}

.vote-btn:first-child {
    border-radius: 0;
    border-right: none;
    border-left: none;
}

.vote-btn:last-child {
    border-radius: 0;
    border-right: none;
    border-left: none;
}

.vote-btn:hover {
    background: #f5f5f5;
    text-decoration: none;
    color: #333;
}

.vote-arrow {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #333;
    transition: color 0.2s ease;
}

.vote-up.active .vote-arrow {
    color: #28a745;
}

.vote-down.active .vote-arrow {
    color: #dc3545;
}

.vote-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    min-width: 60px;
    height: 50px;
}

.vote-score-label {
    font-size: 10px;
    font-weight: normal;
    color: #666;
    margin-top: 2px;
}