:host {
  line-height: initial;
  font-family: var(--dyte-font-family, sans-serif);

  font-feature-settings: normal;
  font-variation-settings: normal;
}

p {
  margin: var(--dyte-space-0, 0px);
  padding: var(--dyte-space-0, 0px);
}


:host {
  display: flex;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  border-radius: var(--dyte-border-radius-md, 8px);
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-background-900, 26 26 26) / var(--tw-bg-opacity));
}

.player-container {
  position: relative;
  margin: var(--dyte-space-4, 16px);
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  border-radius: var(--dyte-border-radius-md, 8px);
}

.loader {
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-background-900, 26 26 26) / var(--tw-bg-opacity));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

p {
  margin-top: var(--dyte-space-1, 4px);
  margin-bottom: var(--dyte-space-1, 4px);
  font-size: 16px;
  color: rgb(var(--dyte-colors-text-700, 255 255 255 / 0.64));
}


.unmute-popup {
  position: absolute;
  z-index: 30 !important;
  display: flex;
  width: var(--dyte-space-72, 288px);
  flex-direction: column;
  border-radius: var(--dyte-border-radius-md, 8px);
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-background-800, 30 30 30) / var(--tw-bg-opacity));
  padding: var(--dyte-space-4, 16px);
  text-align: center;
  max-width: 70%;
}


.unmute-popup h3 {
  margin: var(--dyte-space-0, 0px);
  font-size: 16px;
  font-weight: 500;
}


.unmute-popup p {
  margin-top: var(--dyte-space-3, 12px);
  margin-bottom: var(--dyte-space-3, 12px);
  font-size: 14px;
}

.control-bar {
  position: absolute;
  bottom: 0;
  display: flex;
  height: auto;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 0px 10px;
  z-index: 10; /* Ensures the control bar is above the video */
}

.timings {
  color: rgb(var(--dyte-colors-text-on-brand-1000, var(--dyte-colors-text-1000, 255 255 255)));
}

.control-btn {
  border: none;
  margin-right: var(--dyte-space-2, 8px);
  border-radius: var(--dyte-border-radius-sm, 4px);
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-brand-500, 33 96 253) / var(--tw-bg-opacity));
  color: rgb(var(--dyte-colors-text-on-brand-1000, var(--dyte-colors-text-1000, 255 255 255)));
  cursor: pointer;
  font-size: 24px;
  height: 30px;
  width: 30px;
}

.fullscreen-btn {
  margin-right: 20px;
  height: 30px;
}

.control-btn:hover {
  opacity: 0.8;
}

.control-btn:focus {
  outline: none;
}


.control-groups{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#livestream-video {
  aspect-ratio: 16/9;
  max-width: 100%;
  min-width: 100%;
  left: var(--dyte-space-0, 0px);
  z-index: 20;
  aspect-ratio: 16 / 9;
  width: auto;
  border-radius: var(--dyte-border-radius-md, 8px);
  border-width: 0px;;
}


.level-select {
  border-radius: var(--dyte-border-radius-sm, 4px);
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-brand-500, 33 96 253) / var(--tw-bg-opacity));
  color: rgb(var(--dyte-colors-text-on-brand-1000, var(--dyte-colors-text-1000, 255 255 255)));
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  height: 30px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
}

.level-select:focus {
  outline: none;
}

.level-select option {
  border-radius: var(--dyte-border-radius-sm, 4px);
  --tw-bg-opacity: 1;
  background-color: rgba(var(--dyte-colors-brand-500, 33 96 253) / var(--tw-bg-opacity));
  color: rgb(var(--dyte-colors-text-on-brand-1000, var(--dyte-colors-text-1000, 255 255 255)));
}

.volume-control-holder{
  display: flex;
  justify-content: center;
  align-items: center;
}