#body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdf6d3;
}

#questions-container {
  margin-top: 6.5rem;
}

.btn-sbm-vote {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1rem;
}

#submit-vote {
  border: none;
  outline: none;
  color: black;
  font-weight: bold;
  align-self: center;
}

#submit-vote:hover {
  box-shadow: 0 0 15px rgba(148, 216, 45, 0.8);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
  cursor: pointer;
}

.question-pad {
  background: #ffdf00;
  border-radius: 10px;
  box-shadow: 1px -4px 17px 1px #94d82d;
  opacity: 0.94;
  min-height: 20vh;
  flex-direction: column;
  margin: 20px auto 0px;
  padding: 15px;
  border-radius: 5px;
  width: 500px;
}
.question-pad h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
}
.question-pad label {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    cursor: pointer;
}

.question-pad textarea {
    width: 100%;
    padding: 10px;
    height: 100px;
    margin-top: 10px;
    border-radius: 4px;
    border-style: none;
}

input[type="radio"], input[type="checkbox"] {
  width: 15px;
  height:15px;
  margin-right: 10px;
  cursor: pointer;
}

@media (max-width: 576px) and (min-width: 270px) {
  .question-pad {
    max-width: 60vh;
    min-height: 20vh;
    width: 85vw;
  }
}

.no-question-message {
  background: #ffdf00;
  border-radius: 10px;
  box-shadow: 1px -4px 17px 1px #94d82d;
  opacity: 0.94;
  min-height: 20vh;
  flex-direction: column;
  margin: 20px auto 0px;
  padding: 15px;
  border-radius: 5px;
  width: 500px;
  text-align: center;
}

.no-questions-message h3 {
  color: #6c757d;
  margin-bottom: 1rem;
}

.no-questions-message p {
  color: #6c757d;
  font-size: 1rem;
}

@media (min-width: 250px) and (max-width: 560px) {
  .no-question-message {
    width: 90vw;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in {
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
