/* Transparent corner logo for Syntropy Health slides (Minimal, Optional) */
.bg-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  opacity: 0.15;
  z-index: 10;
  pointer-events: none;
  object-fit: contain;
}

.slide-container {
  position: relative;
  z-index: 1;
}

/* Uniform logo and layout for Syntropy Health slides */
.bg-logo {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 100px;
  height: auto;
  opacity: 0.25;
  z-index: 1000;
  pointer-events: none;
  object-fit: contain;
}

.slide-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(100vw - 30px);
  margin: 0 auto;
  padding: 15px;
  box-sizing: border-box;
}

/* Uniform body styling override */
body {
  margin: 0 !important;
  padding: 15px !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
}

/* Uniform container styling */
.container, .wrapper {
  width: 100% !important;
  max-width: calc(100vw - 160px) !important; /* Account for logo space */
  min-height: calc(100vh - 30px) !important;
  max-height: none !important; /* Allow scrolling */
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 20px 15px !important;
  box-sizing: border-box !important;
  margin-top: 0 !important;
}

/* Scrollable content styling */
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
  background: rgba(126, 211, 33, 0.5);
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgba(126, 211, 33, 0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bg-logo {
    width: 80px;
    top: 10px;
    right: 10px;
  }

  .container, .wrapper {
    max-width: calc(100vw - 120px) !important;
    padding: 15px 10px !important;
  }

  body {
    padding: 10px !important;
  }
}

@media (max-height: 600px) {
  .container, .wrapper {
    justify-content: flex-start !important;
    min-height: auto !important;
  }
}
