h4.poll-question {
    margin-bottom: 10px;
}

.poll-result-button-container {
    text-align: center;
    margin-top: 10px;
}

#pollResultPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
}

#pollResultPopup .popup-inner {
    background: #fff;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-sizing: border-box;
}

#pollResultPopup .close-btn {
    display: inline;
    width: auto;
    border: none;
    font-size: 20px;
    cursor: pointer;
    text-align: right;
}

.poll-result-block {
    margin-bottom: 50px;
}

.poll-result-block h4 {
    text-align: center;
    margin-top: 20px;
}

.poll-result-block p {
    text-align: center;
    margin-top: 10px;
}

