img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width:15%;
  padding-bottom:30px;
}
body {
  line-height:2;
  font-size:22px;
}
hr {
  border: 2px solid blue;
}
.row {
  color:blue;
}
#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;
}
