/* BravesTickets Technician Planner scroll fix
   The TV board stylesheet intentionally locks the TV screen from scrolling.
   This file makes sure the normal admin/planner pages can still scroll. */

html:has(.technician-planner-page),
body:has(.technician-planner-page) {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

body:has(.technician-planner-page) .site-wrap,
body:has(.technician-planner-page) .container,
body:has(.technician-planner-page) .admin-layout,
body:has(.technician-planner-page) .content-stack {
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.technician-planner-page {
  padding-bottom: 3rem !important;
}
