.slideshow-layout {
  position: fixed;
  inset: 0;
  background: var(--accent-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slideshow-stage-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px; /* Space for bottom bar to prevent overlap */
}

.slideshow-stage {
  width: 100%;
  height: 100%;
  max-width: 1366px;
  max-height: 768px;
  position: relative;
  background: var(--bg-app);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 8px; /* Optional slight rounding for the presentation board */
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.4s ease-in-out;
}
.slideshow-stage.slideshow-stage-unconfined {
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  box-shadow: none;
}
.slideshow-stage::-webkit-scrollbar {
  width: 6px;
}
.slideshow-stage::-webkit-scrollbar-thumb {
  background: color-mix(in oklch, var(--text-main) 20%, transparent);
  border-radius: 4px;
}
.slideshow-stage .slide-content,
.slideshow-stage .slide-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.slideshow-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--accent-color);
  color: var(--accent-text);
  border-top: 1px solid color-mix(in oklch, var(--accent-text) 20%, transparent);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideBarIn 0.3s ease-out;
}

.slideshow-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.slideshow-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--accent-text) 30%, transparent);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slideshow-dots .dot.active {
  background: var(--accent-text);
  transform: scale(1.4);
}

.slideshow-btn {
  color: var(--accent-text);
  border: 1px solid color-mix(in oklch, var(--accent-text) 50%, transparent);
  background: transparent;
  transition: all 0.2s ease;
}
.slideshow-btn:hover:not(:disabled) {
  background: color-mix(in oklch, var(--accent-text) 15%, transparent);
  color: var(--accent-text);
}
.slideshow-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slideshow-btn-exit {
  color: var(--accent-text);
  border: 1px solid color-mix(in oklch, var(--accent-text) 40%, transparent);
  background: transparent;
  transition: all 0.2s ease;
}
.slideshow-btn-exit:hover {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
}

.btn-floating-slideshow {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-floating-slideshow:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Ocultar elementos de layout base cuando se embebe un wireframe en el slideshow */
.embed-body {
  background: var(--bg-app) !important;
}

@keyframes slideBarIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Background Layouts for L3M Slides */
.bg-full-bleed {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.bg-full-bleed-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.bg-full-bleed-content h1, .bg-full-bleed-content h2, .bg-full-bleed-content h3 {
  color: #fff;
}

.split-layout-right-img {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .split-layout-right-img {
    flex-direction: row;
  }
}
.split-layout-right-img .split-text {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-app);
}
.split-layout-right-img .split-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 40vh;
}

.split-layout-left-img {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .split-layout-left-img {
    flex-direction: row;
  }
}
.split-layout-left-img .split-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  order: -1;
  min-height: 40vh;
}
.split-layout-left-img .split-text {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-panel);
  color: var(--text-main);
}

/*# sourceMappingURL=slideshow.css.map */
