.main-container {
  width: 600px;
}
@media only screen and (max-width: 600px) {
  .main-container {
    width: 300px;
  }
  
  #target {
    max-width: 100%;
  }

  #target * {
    max-width: 100%;
  }
  
  div:has(#target) {
    max-width: 100%;
  }
}

.player-container {
  width: 480px;
  height: 360px;
  margin: 0 auto;
}

@media only screen and (max-width: 500px) {
  .player-container {
    width: 100vw;
  }
}

#header {
  background: #6201ec;
  padding: 10px 20px;
  color: white;
  height: 2.8rem;
}

.btn-primary {
  border: none;
  color: black !important;
  background-color: #bb85fc !important;
}

button:focus,
.btn.btn-primary:focus {
  outline: none !important;
  box-shadow: none !important;
}

.controller-toggle {
  width: 20px;
  text-align: center;
}

.controller-toggle::after {
  display: none;
}

.controller {
  position: relative;
  display: inline-block;
}

.controller-menu {
  position: absolute;
  right: -20px;
  display: none;
  z-index: 9999;
  overflow-y: auto;
  max-height: 80vh;
  width: 200px;
  height: auto;
  padding: 5px 10px;
  font-size: 0.85rem;
  color: black;
  background-color: white;
  border: 1px solid grey;
  border-radius: 3px;
}

#target {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

#debugDisplay {
  font-size: 12px;
  line-height: 1.1;
  text-align: left !important;
  max-height: calc(100vh - 360px);
  overflow-y: scroll;
  word-wrap: break-word;
  width: 100%;
  margin-top: 10px;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.splitter {
  padding: 0px 2px;
}

hr.dashed {
  border-top: 2px dashed grey;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.dropdown-toggle::after,
.dropdown-toggle::before {
  display: none !important;
}

.eqp-icon-btn-prev,
.eqp-icon-btn-next,
.eqp-icon-btn-vol {
  min-width: 30px !important;
}

.outstream-container {
  width: 600px;
}
@media only screen and (max-width: 800px) {
  .outstream-container {
    width: 100%;
  }
}
.header-outstream {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: #6201ec;
  color: white;
  font-weight: 600;
  padding: 8px 15px;
}

.dropdown-menu.show {
  padding: 5px 10px;
}
