/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #333;
  color: white;
  padding: 1rem;
}

main {
  padding: 2rem;
}

footer {
  margin-top: 2rem;
}

a {
  display: inline-block;
  margin: 1rem;
  padding: 0.5rem 1rem;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

a:hover {
  background-color: #0056b3;
}

/* Ensure .audio-control divs stack vertically and are centered */
.audio-buttons {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  gap: 1rem; /* Add spacing between rows */
  align-items: center; /* Center children horizontally */
}

.audio-control {
  display: flex;
  align-items: center; /* Align label and button vertically */
}

/* Add padding to the left of the "Reveal" label */
.clip-label {
  margin-right: 1rem;
  padding-left: 0.5rem; /* Add space to the left of the label */
  font-weight: bold;
}

.play-pause {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #007BFF;
  color: white;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-pause:hover {
  background-color: #0056b3;
}

.icon {
  pointer-events: none;
}