#streamToggle {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000;
  color: white;
  padding: 10px 12px;
  font-size: 20px;
  cursor: pointer;
  z-index: 99999;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

#streamSidebar {
  position: fixed;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background-color: #121212;
  z-index: 99998;
  color: white;
  overflow-y: auto;
  transition: left 0.3s ease;
}

#streamSidebar.active {
  left: 0;
}

.stream-header {
  padding: 10px;
  background: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.stream-content {
  padding: 10px;
}

.stream-content iframe {
  width: 100%;
  height: 300px;
  border: none;
}
