/* Fullscreen base styles for Pizzaenligne KDS */
html, body {
  height: 100%;
}

body.pel-kds-fullscreen {
  margin: 0 !important;
  padding: 0 !important;
  background: #0b0f14;
  color: #e8eef5;
  overflow: hidden; /* prevent scrollbars in kiosk mode */
}

.pel-kds-fullscreen-root {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
}

/* Ensure the dashboard grid takes full area */
.pel-kds-dashboard {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0; /* for proper flex overflow */
}

.pel-kds-orders {
  flex: 1 1 auto;
  overflow: auto;
}

/* Hide any theme leftovers if they somehow appear */
.site-header, .site-footer, .entry-header, .entry-footer, .sidebar, #wpadminbar {
  display: none !important;
}
