.review-helpful-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.helpful-question h2 {
    color: #212529;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vote-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-vote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.btn-helpful {
    background: #fff;
    color: #198754;
    border-color: #198754;
}

.btn-helpful:hover:not(:disabled) {
    background: #198754;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

.btn-not-helpful {
    background: #fff;
    color: #dc3545;
    border-color: #dc3545;
}

.btn-not-helpful:hover:not(:disabled) {
    background: #dc3545;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-vote:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-vote.voted {
    background: #198754;
    color: #fff;
    border-color: #198754;
}

.btn-vote.voted.btn-not-helpful {
    background: #dc3545;
    border-color: #dc3545;
}

.vote-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-vote:hover .vote-count {
    background: rgba(255, 255, 255, 0.2);
}

.vote-stats {
    margin-top: 1.5rem;
}

.progress {
    background-color: #e9ecef;
    border-radius: 4px;
}

.vote-message, .vote-error {
    border-radius: 8px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .vote-buttons {
        flex-direction: column;
    }

    .btn-vote {
        width: 100%;
    }
}
