.poll-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.poll-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.poll-nav-btn {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.poll-nav-btn:hover:not(:disabled) {
    background: #000;
    transform: translateY(-2px);
}

.poll-nav-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

.poll-counter {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.poll-item {
    animation: fadeIn 0.4s ease;
}

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

.poll-question {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.4;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.poll-option {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poll-option:hover {
    background: #f3f4f6;
    border-color: #3b82f6;
    transform: translateX(5px);
}

.poll-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.poll-option-text {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

.poll-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poll-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.poll-results {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.poll-result-item {
    padding: 12px 0;
}

.poll-result-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.poll-percentage {
    color: #3b82f6;
    font-weight: 700;
}

.poll-result-bar {
    height: 32px;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.poll-result-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 16px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.poll-votes-count {
    margin-top: 5px;
    font-size: 13px;
    color: #6b7280;
}

.poll-total-votes {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

@media (max-width: 640px) {
    .poll-container {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .poll-question {
        font-size: 18px;
    }
    
    .poll-nav-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}