/*
 * SCROLLBAR FIXES - KOMPLETT
 * ===========================
 * Behebt alle Scrollbar-Probleme
 */

/* Verhindere horizontale Scrollbars ÜBERALL */
html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

/* Alle Elemente dürfen nicht breiter als Viewport sein */
* {
  max-width: 100vw !important;
}

/* Container und Sections */
.container,
.container-fluid,
section,
div {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Header - KEINE Scrollbars */
.oyropa-header,
.header-container,
.header-buttons {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* Footer - KEINE Scrollbars */
.oyropa-footer,
.footer-container,
.footer-grid {
  overflow-x: hidden !important;
}

/* Verstecke Scrollbars aber erlaube Scrollen (falls nötig) */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE and Edge */
* {
  -ms-overflow-style: none;
}
