/* ============================================
   Header Offset - Teacher/Admin Pages

   TEACHER UI ONLY - Do not load on learner pages.

   This file provides the proper padding offset for
   teacher/admin pages using the fixed header-v2 component.

   Header height: 88px (compact teacher variant — masthead-compact.css)
   Safe area: env(safe-area-inset-top) for notched devices
   ============================================ */

/*
   Teacher dashboard uses its own container (.teacher-dashboard)
   with manual padding. This class is available for other admin
   pages that need header offset without custom containers.
*/
.header-teacher-offset {
    padding-top: 98px;
}

@supports (padding-top: env(safe-area-inset-top)) {
    .header-teacher-offset {
        padding-top: calc(98px + env(safe-area-inset-top));
    }
}
