img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width:30%;
}
body {
  line-height:2;
  font-size:25px;
}
tr {
  line-height: 1.5; /* Sets table row line height */
  height: 1em;    /* Optional: explicitly controls row height */
}
/* Zebra Striping for every other row in tbody */
tbody tr:nth-child(even) {
  background-color: #f2f2f2; /* Light gray background */
}
hr {
  border: 2px solid blue;
}
.blue {
  color:blue;
  font-weight:400;
  font-size:23px;
}
  /* Custom tooltip inner styles */
span {
  font-weight:500;
}
#audioPlayerWindow {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 250px;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* hidden until opened */
}
/* Header styling (used for dragging) */
#audioPlayerHeader {
  background-color: #f8f9fa;
  padding: 5px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Control buttons container */
#audioPlayerControls {
  padding: 10px;
  text-align: center;
}
/* Style for the control buttons */
#audioPlayerControls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  margin: 0 5px;
  cursor: pointer;
}

