/* 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;
}

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

/* Schedule Table Container */
.schedule-table-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
}

/* Schedule Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
}

.schedule-table th,
.schedule-table td {
  border: 0.0625rem solid #ccc;
  padding: 0.75rem 1rem;
  text-align: center;
}

.schedule-table th {
  background-color: #00699F;
  color: white;
  font-weight: bold;
  padding: 1rem;
}

.schedule-table th:first-child {
  text-align: left;
}

.schedule-table td:first-child {
  text-align: left;
  font-weight: bold;
  background-color: #f5f5f5;
}

.schedule-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.schedule-table tbody tr:hover {
  background-color: #f0f0f0;
}

/* Name with Hint */
.name-with-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Hint Container */
.hint-container {
  position: relative;
  display: inline-block;
}

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

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

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

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

.hint-text p {
  margin: 0.5rem 0;
}

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

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

/* Position for audio recorder */
/*
.audio_recorder {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
}
  */
footer {
  display: none;
}