.poll-form-wrapper{
    background: linear-gradient(45deg, #ffd1d1, transparent);
    border-radius: 3px;
    padding: 20px 0px;
    margin: 0px auto;
    width: calc(100% - 30px);
}
#pollForm{
    padding: 10px 20px;
    /* border-radius: 5px;
    width: 350px; */
}
.form-question{
    font-size: 25px;
    font-weight: 700;
}
.progress-bar {
    width: 0; /* Initial width to make the transition visible */
    transition: width 1.5s ease-in-out; /* Smooth transition */
}
.progress{
    border: 1px solid lightgray;
}
.form-check-label{
    font-size: 15px !important;
}
.btn-poll{
    width: 150px;
    display: block;
    border-radius: 20px;
    background: #e72679;
    color: #fff;
    border: none !important;
    outline: none !important;
}
.btn-poll:active{
    border: none !important;
    outline: none !important; 
}
.poll-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.result {
    margin-top: 20px;
    padding: 10px;
    background-color: #d1e7dd;
    color: #0f5132;
    border-radius: 5px;
    display: none;
}