.poll-card-container{
background-color: #e8e2e2;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom:10px;
    max-width:590px;
}


.poll-table-body{
border-top-left-radius: 10px;
border-top-right-radius: 10px;
height: calc(100vh - 190px);
width: 100vw;
background:white;
overflow:auto;
}

.poll-question-panel{
border-top-right-radius: 10px;
border-top-left-radius: 10px;
padding:10px;
background:#003126;
display: flex;
align-items: center;
flex-direction: column;
}

.poll-ans-panel {
    padding: 15px;
    background: white;
    border-radius: 5px;
    margin: 15px;
    position: relative;
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Hover Effect */
.poll-ans-panel:hover {
    background-color: gray; /* Darker green */
    box-shadow: 0px 0px 10px rgba(76, 175, 80, 0.8); /* Glow effect */
    transform: scale(1.05); /* Slightly enlarge */
    cursor: pointer;
}

/* Highlight when selected */
.poll-ans-panel.selected {
    border: 2px solid #ffcc00; /* Yellow border to highlight */
    box-shadow: 0px 0px 15px rgba(255, 204, 0, 0.8); /* Glow effect */
}

.ans-body-panel{
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #66eb6b;
     height: 100%;
     border-radius: 5px;
}
.answered {
    border: 1px solid #d6c427; /* Gold border */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 80%); /* Glow effect */
}
.ans-percentage{
position: absolute;
 right: 0; top: 50%;
  transform: translateY(-50%);
   padding-right: 10px;
    z-index: 3;
}
.ans-label{
position: absolute;
 left: 10px; top: 50%;
  transform: translateY(-50%);
   z-index: 3;
    color:black;

}
.poll-countdown{
margin: 15px;
font-weight: 600;
display: flex;
flex-direction: row;
justify-content: space-between;
}

.pollpopup{
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #003126;
    padding:10px;
    color: white;
}
.popup_top_panel{
display: flex;
flex-direction: row;
align-items: center;
}
.popup_q_field_panel{
margin:10px;
}

.popup_ans_option_body{
margin:10px;
display: flex;
flex-direction: column;
max-height: 180px;
overflow: auto;
}

.popup-ans-option{
margin-bottom:10px!important;

}

.popup_actual_ans_field_panel{
margin:10px;
display: flex;
flex-direction: column;
align-items: baseline;
}

.popup_attachment_panel{

}

.popup_button_panel{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.option-close{
height: 25px;
    width: 25px;
    border-radius: 25%;
    margin-left: 5px;
    color: white;
    background: black;
    font-weight: 700;
}
.poll-questionArea{
width: -webkit-fill-available;
height: 5em;
resize: none;
}
.poll-attachmentPanel{
margin:15px;
}

.white-700{
    color: white;
    font-weight: 700;
}

.flex-end{
display: flex;
justify-content: flex-end;
}
