/* Base body styling */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Kiosk-friendly */
  overscroll-behavior: none;
  touch-action: manipulation;
  user-select: none;
  overflow: hidden; /* prevent scrollbars from showing on body */
}

/* Fullscreen layout control */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Enable conditional scrolling inside root */
#root {
  height: 100%;
  overflow: auto;
  scrollbar-width: none; /* Firefox: completely hides scrollbars */
}

/* Chrome, Safari, Edge: hide scrollbars */
#root::-webkit-scrollbar {
  display: none;
}

/* Optional: show scrollbar when user hovers over root */
#root:hover::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  display: block;
}

#root::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

#root::-webkit-scrollbar-track {
  background-color: transparent;
}

/* Optional: prevent nested layout from overflowing */
* {
  box-sizing: border-box;
}

/* Optional: apply smooth scroll behavior globally */
html {
  scroll-behavior: smooth;
}

/* Pulse ring animation */
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.7;
  }
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-Italic.ttf) format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-BoldItalic.ttf) format('truetype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-Light.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-LightItalic.ttf) format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-Semibold.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-SemiboldItalic.ttf) format('truetype');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-ExtraBold.ttf) format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url(/static/images/OpenSans-ExtraBoldItalic.ttf) format('truetype');
  font-weight: 800;
  font-style: italic;
}

/*# sourceMappingURL=main.7a2c44fdd1418ca660c9.css.map*/