/* =Child-Theme responsive styles starts here
-------------------------------------------------------------- */

/* Ensure parent containers don't interfere with sticky positioning */
#schedule-table-servers,
#schedule-table-bartenders,
#schedule-table-entertainers {
  overflow: visible !important;
}

.entry-content,
.site-content,
.content-area {
  overflow: visible !important;
}

/* Mobile schedule table optimizations */
@media (max-width: 767px) {
  /* Keep table display for sticky headers to work */
  .schedule-table {
    display: table;
    width: 100%;
  }

  /* Optimize table cell sizing for mobile */
  .schedule-table th,
  .schedule-table td {
    white-space: nowrap;
    min-width: 50px;
  }

  .schedule-table th:first-child,
  .schedule-table td:first-child {
    min-width: 100px;
    max-width: 150px;
    white-space: normal;
    word-wrap: break-word;
  }
}
