/*
 * Manabi Video Navi V264 — pricing comparison header contrast.
 *
 * Live verification on pricing.php showed the pale header surface coming
 * from .compare-table thead while V249's long !important selector forced the
 * four TH labels back to white. The existing #main-content landmark makes
 * this page-scoped rule more specific without changing markup or behavior.
 */

body.page-pricing #main-content .compare-table thead th {
  background-color: #f1f7ff !important;
  background-image: none !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  -webkit-text-stroke: 0 transparent !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

@media (forced-colors: active) {
  body.page-pricing #main-content .compare-table thead th {
    border-color: CanvasText !important;
    background: Canvas !important;
    color: CanvasText !important;
    -webkit-text-fill-color: CanvasText !important;
  }
}
