.poll-container {
    position: absolute;
    z-index: 2;
    box-sizing: border-box;
    width: 270px;
    border-radius: 10px;
	top: 80px;
    left: 25px;
    overflow: hidden;
}

/* Poll Question */
.poll-question {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    padding: 20px;
    padding-bottom: 5px;
    font-size: 18px;
    background-color: transparent;
    margin-bottom: 0;
}

/* Poll Options */
.poll-options {
	border: 1px solid rgba(252, 252, 252, 0.34);
	border-radius: 25px;
	padding: 10px;
}

/* Poll Option */
.poll-option {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    width: 100%;
    padding: 10px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    border: 1px solid rgba(252, 252, 252, 0.34);
    color: white;
    background-color: rgba(255, 255, 255, 0);    
    margin: 8px 0px;
	border-radius: 25px;
    transition: background-color 0.5s, opacity 0.5s, transform 0.5s;
	position: relative;
	align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.poll-option:first-child {
    margin-top: 0;
}

.poll-option:last-child {
    margin-bottom: 0;
}

.poll-option:active {
    transform: scale(0.95);
}

.poll-option:hover {
    background-color: rgba(128, 128, 128, 0.5);
}

.poll-option-letter {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 24px;
    margin: 0 10px 0 10px;
    font-size: 13px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0);
    transition: opacity 0.3s, font-size 0.3s;
	z-index: 2;
	position: relative;
    aspect-ratio: 1;
}

.poll-option-text {
  z-index: 2;
  position: relative;
}

.option-fill-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%; /* Cover the full width of the poll option */
    overflow: hidden; /* Hide overflowing content */
    border-radius: 25px 0 0 25px; /* Border-radius on the left side only */
    z-index: 1; /* To keep it below the text and percentage */
}

.option-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%; /* Start with no fill */
    transition: width 0.5s ease-in-out; /* Animation */
    background-color: rgba(0, 122, 255, 0.7); /* Color for the fill with transparency */
}

.option-percentage {
  visibility: hidden;
  z-index: 2;
  position: relative;
  margin-left: 10px; /* some spacing between the option text and percentage */
}

.poll-option-content {
    display: flex;
    align-items: center;
}