/* 廷亮排班系統 — 自訂樣式 */

/* 讓班表水平捲動更順 */
.schedule-scroll {
  -webkit-overflow-scrolling: touch;
}

/* 人員 chip */
.staff-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
}

/* 列印時只留班表內容 */
@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: #fff !important;
  }
  main {
    padding: 0 !important;
    max-width: none !important;
  }
}
