/* autoplay/unmute overlays */
.simple-hls-overlay {
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 50;
  pointer-events: auto;
}
.simple-hls-overlay-inner {
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  text-align:center;
}
.simple-hls-overlay-btn {
  margin-top: 8px;
  display:inline-block;
  padding: 8px 14px;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius:4px;
  font-weight:600;
  cursor:pointer;
}
.simple-hls-unmute-btn {
  position:absolute;
  right:12px;
  bottom:12px;
  z-index:60;
  background: rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  padding:8px 10px;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
}
.simple-hls-player-wrap { position: relative; overflow: hidden; }
