

.question-page-main-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#question-card {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(0.2rem);
  border-radius: 20px;
  min-height: 60vh;
  width: 100%;
  max-width: 600px;
  box-shadow: inset 0 0 5px white, 0 0 5px gray;
  border: 1px solid purple;
  text-align: center;
  border: 0.05rem solid gray;
  transition: transform 0.3s ease;
}

#q-count-div {
  width: 100%;
  height: auto;
  padding: 1vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(56, 56, 56, 0.4);
}

.q-header-div button{
  background: transparent;
  font-size: 30px;
  transform: scale(1);
  transition: transform 0.3s ease;
  b
  border-radius: 1000px;
  width: 6vh;
  height: 6vh;
  text-align: center;
}

.q-header-div button:active {
  transform: scale(0.85);
}

#previous-q {
  margin-right: auto;
  color: white;
  font-size: 25px;
}

#facts-current-q {
  margin-left: auto;
  color: white;
  font-size: 25px;
}

#q-count-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 0 5px black, 0 0 10px black;
}

#q-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

#question {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  text-shadow: 0 0 5px black, 0 0 10px black;
}


/* Yes/No Buttons */
#yes-no-buttons {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 0.5rem;
}

.answers {
  flex: 1;
  height: 3rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  background: linear-gradient(135deg,#7a58cc,#d33434); 
  color: white;
  border: none;
  transition: transform 0.25s ease-in-out, box-shadow 0.5s ease;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  margin: 0 0.3rem;
  text-shadow: 0 0 5px gray;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}


.answers:hover {
  transform: translateY(-2vh);
  background: #A14780;
  box-shadow: inset 0 0 0.75rem rgba(255, 255, 255, 0.35);
}
.answers:active {
  transform: scale(0.85);
  background: #A14780;
  box-shadow: inset 0 0.25rem 0.75rem rgba(255, 255, 255, 0.35);
}

/* Progress */
.progress-container {
  margin: 1rem auto 0 auto;
  width: 85vw;
  max-width: 20rem;
  height: 10vh;
  background-image: url('../assets/images/backgrounds/button-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  transform: scale(0.9);
  border-radius: 20px;
  box-shadow: inset 0 0 0.75rem var(--color-primary-light);
  position: relative;
  overflow: hidden;
  display: none;
  transition: transform 0.3s ease;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: blue;
  backdrop-filter: blur(0.25rem);
  border-radius: 20px;
  transition: width 0.4s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 2rem;
  color: white;
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.75);
}