#soundboard-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* Space between video and button */
}

/* **NEW:** Style for the video element */
#lizard-video {
  width: 100%;
  max-width: 400px; /* Adjust as needed */
  height: auto;
  display: block;
}

#sound-button {
  width: 100px;
  height: 100px;
  background-color: #ff1744; /* A nice bright red */
  border: 5px solid #ff8a80; /* Lighter red outer ring */
  border-radius: 50%; /* Makes it a circle */
  cursor: pointer;
  transition: transform 0.1s ease;
}

#sound-button:active {
  transform: scale(0.95); /* A little "press" effect */
}
