html {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  background: black;
  height: 100%;
  font-family: Helvetica, sans-serif;
}

.slideshow-player-container {
  overflow: hidden;
}

::-webkit-scrollbar {
  display: none;
}

.sis-slide {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.sis-slide-fadein {
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.sis-visible-slide {
  opacity: 1;
  z-index: 7000;
}

.sis-hidden-slide {
  opacity: 0;
  z-index: 0;
}

.sis-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  z-index: 0;
}

.sis-slide-info {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9000;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.85);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #318298;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.sis-slide-info-location {
  font-weight: bold;
  color: #318298;
  margin-bottom: 3px;
}

.sis-slide-info-currentslide-name {
  margin-bottom: 6px;
}

.sis-slide-info-next-slide,
.sis-slide-info-next-update {
  font-size: 16px;
}

.sis-slide-info-next-slide {
  margin-top: 6px;
  color: #318298;
}

.sis-slide-info-next-update {
  margin-top: 0px;
  color: #ff6b6b;
}

.sis-slide-info-time {
  display: inline-block;
  width: 3ch;
  text-align: right;
}

.sis-slide-info-browser {
  margin-top: 0;
  font-size: 14px;
  font-style: italic;
  color: #fff;
}

.sis-infobanner {
  position: fixed;
  width: 100%;
  z-index: 8000;
  overflow: hidden;
}

.sis-infobanner-inner {
  transform-origin: 0 0;
  padding: 10px;
}

.sis-infobanner-inner p {
  margin: 0;
  padding: 0;
}

.sis-infobanner-bottom {
  bottom: 0;
}

.sis-infobanner-full {
  height: 100%;
  max-height: 100%;
}

.sis-infobanner-top {
  top: 0;
}

.sis-infobanner-hidden {
  opacity: 0;
}

.sis-night-mode {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  z-index: 1;
}

.sis-night-mode img {
  position: fixed;
}

.sis-iframe {
  border: 0;
  -ms-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.sis-error-no-data {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 10px;
  height: 100%;
  width: 100%;
  background-color: black;
  color: red;
  font-size: 18pt;
  text-align: center;
  z-index: 1;
}

.sis-error-toast {
  position: fixed;
  top: 10px;
  left: calc(50% - 240px);
  height: 30px;
  width: 480px;
  background-color: red;
  color: white;
  font-size: 16pt;
  text-align: center;
  border-radius: 5px;
  padding-top: 5px;
  z-index: 9999;
}

.sis-hidden {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Debug Console Overlay */
#sis-debug-console {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
  color: #0f0;
  font-family: monospace;
  font-size: 28px;
  line-height: 1.4;
  padding: 20px;
  box-sizing: border-box;
  z-index: 999999;
  display: none;
  white-space: pre-wrap;
  word-wrap: break-word;
}

#sis-debug-console.sis-debug-visible {
  display: block;
}

#sis-debug-console .sis-debug-error {
  color: #f55;
}

#sis-debug-console .sis-debug-warn {
  color: #ff0;
}

#sis-debug-console .sis-debug-time {
  color: #888;
  margin-right: 12px;
}
