
html, body {
  background-color: black;
}

#menu-button {
  position: absolute;
  top: 35px;
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 1000;
  opacity: 0.5;
  cursor: pointer;
}

#stream-container {
  position:fixed;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#stream-iframe {
  width: 100%;
  height: 100%;
}
#stream-list {
  display: none;
  position: absolute;
  top: 30px;
  left: 8px;
  width: 400px;
  height: 80%;
  overflow-y: auto;
  z-index: 500;
  opacity: 0.7;
  padding: 10px;
  color: yellow;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
#stream-list .close, #stream-list .refresh {
  color: #ff9900;
}
#stream-items h4, #stream-items ul {
  margin: 5px 0;
  padding: 0;
}
#stream-items li {
  margin-left: 25px;
  list-style-type: none;
}
#stream-items .stream-item {
  cursor: pointer;
}
