#poll-voting-container {
    width: 100%;
    max-width: 863px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8ffff;
    border-radius: 11px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #d8f7f8;
}

.poll-diff-question {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
	color: #093D54;
    font-weight: 700;
}

.poll-option {
    margin: 15px 0;
}

.poll-vote-btn {
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 10px 15px;
    border: none;
    cursor: pointer;
	display:block;
    width: 100%;
    text-align: center;
    border-radius: 11px;
    font-size: 15px;
    border: 2px solid;
    border-color: #e1dce4;
}

.poll-vote-btn:hover {
    background-color: #219fab;
}

.progress-bar {
    height: 8px;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-top: 10px;
}

.progress {
    height: 100%;
    background-color: #8ADEDF;
    border-radius: 4px;
}

.vote-percentage {
    display: block;
    text-align: center;
    margin-top: -10px;
    font-size: 16px;
    color: #333;
}

 input[type="radio"] {
      appearance: none; /* Remove default styling */
      -webkit-appearance: none; /* For Safari */
      width: 15px;
      height: 15px;
      border: 2px solid gray;
      border-radius: 50%; /* Make it circular */
      outline: none;
      cursor: pointer;
      background-color: white;
      transition: 0.3s ease;
	 margin-right:11px !important;
    }

  input[type="radio"]:hover {
      border-color: #007bff;
    }

    /* Style when checked */
    input[type="radio"]:checked {
      background-color: #6ccbd0;

      border-color: #9bb2b4;

    }

.poll-option:first-of-type .poll-vote-btn {
  padding-right: 45px;
}


.revote-btn {
    display: block;
    margin: 20px auto; /* Centers the button */
    background-color: #219fab;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 11px;
    font-size: 15px;
    border: 2px solid #e1dce4;
    text-align: center;
}
.revote-btn:hover {
    background-color: #197d83;
}