.poll-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background: #FFFAF5;
    border: 1px solid #EAE0D5;
    border-radius: 20px;
    font-family: sans-serif;
}

.poll-left {
    flex: 1 1 300px;
}

.poll-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.poll-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D38E6A;
    margin-bottom: 20px;
    font-weight: bold;
}

.poll-question {
    font-size: 36px;
    margin: 0 0 20px 0;
    color: #332B25;
    font-family: serif;
    line-height: 1.2;
}

.poll-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.poll-counter {
    font-size: 14px;
    color: #666;
}

.poll-counter-num {
    font-weight: bold;
    color: #333;
}

.poll-answers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.poll-answer {
    position: relative;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 1px solid #EAE0D5;
    border-radius: 15px;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
}

.poll-answer:hover {
    border-color: #D38E6A;
}

.poll-answer-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #EEDBCD;
    z-index: 1;
    transition: width 0.8s ease;
}

.poll-answer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poll-answer-text {
    font-size: 16px;
    color: #333;
}

.poll-answer-hint {
    font-size: 12px;
    color: #999;
}

.poll-answer-percent {
    font-weight: bold;
    color: #333;
}

.poll-container.voted .poll-answer {
    cursor: default;
    border-color: #EAE0D5;
}

.poll-container.voted .poll-answer:hover {
    border-color: #EAE0D5;
}

.poll-container.voted .poll-answer-hint {
    display: none;
}

.poll-container.voted .poll-answer-percent {
    display: block !important;
}

.poll-thank-you {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .poll-container {
        flex-direction: column;
    }
}