@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: Roboto;
}

.sceneNames {
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  color: white;
  z-index: 999;
  position: relative;
  text-align: center;
  padding: 15px 50px;
  margin: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.currentScene {
  margin: 0;
  color: white;
  text-shadow: 2px 2px 2px black;
}

.apuScenes {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background-color: transparent;
  z-index: 10;
}

#bottom-overlay {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 10%;
  background-color: transparent;
  z-index: 10;
}

.collapse-title {
  min-height: 40px !important;
}

.collapsible-test {
  cursor: pointer;
  /* padding: 8px 18px; */
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.content-test {
  /* padding: 0 18px; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

