#schedule-display h3 {
  margin-top: 20px;
  color: #3498db;
  font-size: 22px;
}
#schedule-display p {
  font-size: 15px;
  margin: 5px 0;
}

.schedule-game {
  background: linear-gradient(90deg, #232323 80%, #1e1e1e 100%);
  border-radius: 12px;
  margin: 18px 0;
  padding: 18px 22px;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  align-items: center;
  transition: box-shadow 0.2s, background 0.2s;
}

.schedule-game:hover {
  box-shadow: 0 4px 24px rgba(0,255,136,0.12);
  background: linear-gradient(90deg, #232 80%, #1e1e1e 100%);
}

/* Grid column alignment */
.schedule-game > div:nth-child(1) {
  text-align: left;
}
.schedule-game > div:nth-child(2) {
  text-align: center;
}
.schedule-game > div:nth-child(3),
.schedule-game > div:nth-child(4) {
  text-align: right;
}

.schedule-opponent {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}
.schedule-meta {
  font-size: 15px;
  color: #b0ffc0;
}
.schedule-venue {
  font-size: 13px;
  color: #aaa;
}
.schedule-home {
  color: #43b581;
  font-weight: bold;
}
.schedule-away {
  color: #e74c3c;
  font-weight: bold;
}

.setup-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.custom-dropdown {
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 14px;
  margin-top: 6px;
  width: 100%;
  max-width: 250px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.custom-dropdown:hover {
  border-color: #7289da;
}

.custom-dropdown:focus {
  outline: none;
  border-color: #3498db;
  background-color: #333;
}

/* Always-visible header row */
#schedule-header {
  background: #121212;
  border-bottom: 1px solid #2a2a2a;
  font-size: 15px;
  color: #ccc;
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  padding: 14px 22px;
  margin-top: 30px;
  border-radius: 12px 12px 0 0;
  font-weight: bold;
}

/* Responsive mobile layout */
@media (max-width: 600px) {
  #schedule-display {
    max-width: 98vw;
  }
  .schedule-game {
    max-width: 98vw;
    padding: 12px 8px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .schedule-game > div {
    text-align: center !important;
  }
  #schedule-header {
    grid-template-columns: 1fr;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }
}

/* Print layout */
@media print {
  header,
  nav,
  #team-filter,
  #week-filter,
  #print-schedule,
  label[for="team-filter"],
  label[for="week-filter"],
  .mobile-bottom-nav,
  .more-menu,
  #page-title,
  #page-desc {
    display: none !important;
  }

  footer {
    display: none !important;
  }

  #schedule-display {
    position: static !important;
    width: 100vw !important;
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .schedule-game {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    page-break-inside: avoid;
    margin: 4px 0 !important;
    padding: 6px 8px !important;
    font-size: 13px !important;
    gap: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 2fr 2fr;
    align-items: center;
  }

  .schedule-game > div:nth-child(1) {
    text-align: left !important;
    justify-self: start !important;
  }
  .schedule-game > div:nth-child(2) {
    text-align: center !important;
    justify-self: center !important;
  }
  .schedule-game > div:nth-child(3),
  .schedule-game > div:nth-child(4) {
    text-align: right !important;
    justify-self: end !important;
  }

  .schedule-opponent,
  .schedule-meta,
  .schedule-venue {
    color: #000 !important;
    font-size: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #schedule-display h3 {
    font-size: 16px !important;
    margin: 8px 0 4px 0 !important;
    color: #000 !important;
    text-align: center !important;
  }

  #schedule-header {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #ccc !important;
    font-size: 13px !important;
    padding: 6px 8px !important;
    page-break-inside: avoid;
    display: grid !important;
    grid-template-columns: 1fr 2fr 2fr !important;
  }
<<<<<<< HEAD

  #print-team-title {
  display: block !important;
  font-size: 20px !important;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #000 !important;
}

}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto;
  height: 60px;
}
.loading-spinner:after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 6px solid #3498db;
  border-top-color: #222;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
=======
}
>>>>>>> a0416031c77e27f41c0649b6124c0f409d78d726
