/* Arena Teney — Experience r01k sticky table header
 * Keeps column meanings visible while the user scrolls vertically through
 * the Experience table. Presentation-only: no data, formulas or geometry.
 */

#screen-experience .exp-table thead th {
  position: sticky !important;
  top: 0;
  z-index: 40 !important;
  background: linear-gradient(180deg, #211b10, #12110d) !important;
  background-clip: padding-box !important;
  box-shadow:
    0 1px 0 rgba(220, 201, 141, .34),
    0 10px 18px -16px rgba(0, 0, 0, .96);
}

/* The corner cell must stay above both the sticky header row and sticky
 * first column when the user pans horizontally and vertically together. */
#screen-experience .exp-table thead th:first-child {
  left: 0;
  z-index: 50 !important;
}
