.toplevel_page_ultp_audio_player .wp-menu-image img {
  width: 23px;
  padding-top: 5px !important;
}

.audio-player button, 
.audio-player input[type="button"], 
.audio-player input[type="reset"], 
.audio-player input[type="submit"] {
    all: unset;
}

.audio-player {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* Buttons play and pause */
button {
  background: none;
  border: none;
  padding-right: 3px;
  cursor: pointer;
  font-size: 20px;
  color: white;
  display: flex;
  align-items: center;
}

/* Playing time */
.time {
  font-size: 12px;
  color: #555;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 2px 3px;
  border-radius: 5px;
  margin: 3px 0 0;
  min-width: 70px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Volume container */
.volume-container {
  display: flex;
  align-items: center;
}

/* Volume icon */
.volume-icon {
  font-size: 18px;
  color: white;
  margin: 3px 0 0;
  padding-left: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  text-align: center;
}

/* Volume slider */
input[type="range"] {
  -webkit-appearance: none;
  max-width: 50px;
  height: 5px;
  background: #00a6ed;
  border-radius: 5px;
  margin: 2px 5px 0;
  cursor: pointer;
}

/* Slider for Chrome/Safari */
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: #00a6ed;
  border-radius: 5px;
}

/* Volume slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  border: 1px solid #aaa;
  margin-top: -3px;
}

/* Volume slider thumb for Firefox */
input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  border: 1px solid #aaa;
}