/* Google Font - League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Exercise Container */
.exercise-container {
  width: 40rem;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 36rem;
  overflow-y: visible;
  padding: 0.5rem;
}

/* Daily Questions Container */
.daily-questions-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 40rem;
  padding: 0.25rem 0;
}

/* Question Row */
.question-row {
  padding: 0.25rem 0.75rem;
  transition: transform 0.2s ease;
  border-bottom: 0.0625rem solid #eee;
  margin-bottom: 0.5rem;
}

/* Question Content */
.question-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.25rem;
}

/* Question Text */
.question-text {
  font-size: 1.1rem;

  color: #00699F;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Answer Content */
.answer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* Answer Text */
.answer-text {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  width: 25rem;
}

/* Question Row Content */
.question-row-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Answer Text Container */
.answer-text-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Time Display */
.time-display {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 3rem;
  background-color: #f0f0f0;
  border-radius: 0.25rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.line-through {
  text-decoration: line-through;
  color: #999;
}

/* Hint Container */
.hint-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
}

.hint-button {
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hint-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.hint-button:hover .hint-icon {
  transform: scale(1.1);
}

.hint-text {
  display: none;
  position: absolute;
  left: -6rem;
  top: 1.75rem;
  background-color: #fff;
  border: 0.0625rem solid #ddd;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  z-index: 10;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: #333;
  min-width: 12rem;
  text-align: left;
  white-space: normal;
}

.hint-container.active .hint-text {
  display: block;
}

/* Hide elements */
.hidden {
  display: none;
}

footer {
  display: none;
}

/* Prefix Text */
.prefix-text {
  font-weight: normal;
  color: #333;
  padding-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 48rem) {
  .question-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .question-text {
    margin-bottom: 0.5rem;
  }
  
  .time-display {
    width: 6rem;
    margin-left: auto;
  }
}