/* Print styles for schedule page only */

@media print {
  @page {
    size: letter;
    margin: 0.5in;
  }
  
  nav,
  .hamburger,
  .section-rule,
  .schedule-intro,
  .info-box,
  .schedule-footer,
  .contact-section,
  footer,
  .btn,
  .section-btns {
    display: none !important;
  }
  
  body {
    padding-top: 0;
    margin: 0;
  }
  
  .section {
    padding: 0;
    max-width: 100%;
  }
  
  .section-title {
    display: block !important;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #194A3A;
  }
	
	/* Show schedule notes (with badges) */
  .schedule-note {
    display: block !important;
   margin-bottom: 0.75rem;
  }
	
	/* Schedule legend styling */
.schedule-legend {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 15px;
  align-items: start;
  margin-bottom: 1rem;
}
  
  .schedule-table {
    page-break-inside: avoid;
    width: 100%;
    font-size: 0.85rem;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 0.5rem 0.75rem;
  }

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
	
	/* Force background colors to print */
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  color-adjust: exact;
	

}

.badge-green {
  background: rgba(30,77,43,0.12);
  color: #194A3A);
}

.badge-gold {
  background: rgba(201,168,76,0.2);
  color: #8a6d1e;
}

.badge-note {
  background: rgba(100,100,100,0.1);
  color: #555;
}
}