/* General Styles */
body {
  background: black;
  margin: 0;
  padding: 0;
}

/* Video Player */
#myElement {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}

/* Slide-Out Button (Unused currently but preserved for future use) */
.slide-out-button {
  position: fixed;
  top: 10%;
  right: 0;
  z-index: 1;
  max-width: 18px;
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  border-radius: 4px 0 0 4px;
  text-size-adjust: none;
}

.slide-out-button .slide-out-title {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  line-height: 10px;
  padding: 0.5rem;
  white-space: nowrap;
  background: #546e7a;
}

.slide-out-button.slide-in,
.slide-out-button:hover {
  max-width: 200px;
}

.slide-out-button.slide-in .slide-out-title,
.slide-out-button:hover .slide-out-title {
  color: #fff;
}

/* Utility Classes */
.hide {
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.show {
  opacity: 1;
  pointer-events: all;
}

.none {
  display: none;
}