/* Judge voting styles */
.voting-section {
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-top: 10px;
}

.vote-count {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 12px;
    min-width: 30px;
    text-align: center;
}

.vote-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    padding: 8px 10px;
    border-radius: 4px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-btn:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.05);
}

.vote-btn:active {
    transform: scale(0.95);
}

.vote-up {
    color: #4CAF50;
}

.vote-down {
    color: #F44336;
}

.vote-btn.voted {
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

/* For mobile devices */
@media (max-width: 768px) {
    .vote-btn {
        font-size: 1.7rem;
        padding: 10px 12px;
    }
    
    .vote-count {
        font-size: 1.4rem;
        margin: 0 15px;
    }
}