#poll-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

#poll-page .poll-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

#poll-page .poll-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a3d62;
    margin-bottom: 1rem;
}

#poll-page .poll-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#poll-page .poll-option-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #444;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#poll-page .poll-option-btn:hover {
    border-color: #3498db;
}

#poll-page .poll-option-btn.poll-yes.selected {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

#poll-page .poll-option-btn.poll-no.selected {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

#poll-page .poll-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    min-height: 1.2em;
}

#poll-page .poll-status-error {
    color: #d32f2f;
}

#poll-page .no-polls {
    text-align: center;
    padding: 3rem;
    font-size: 1.1rem;
    color: #666;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    #poll-page .poll-options {
        flex-direction: column;
    }
}
