/* General Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #121521, #1d356d, #6b0715, #dc957d);
  background-size: 400% 400%;
  animation: gradientShift 25s ease infinite;
  color: #f0f0f0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ddd;
}

/* Day Buttons */
.day-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.day-btn {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #fff;
  border-radius: 30px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.day-btn span {
  display: block;
  font-size: 0.8rem;
  color: #ccc;
}

.day-btn:hover,
.day-btn.active {
  background-color: #fff;
  color: #121521;
}

/* Schedule Table */
.schedule-table {
  display: none;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.schedule-table.active-schedule {
  display: block;
}

.schedule-heading-row,
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
}

.schedule-heading {
  font-weight: bold;
  color: #ffffff;
}

.schedule-item {
  color: #f0f0f0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule-row:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .schedule-heading-row,
  .schedule-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .schedule-heading,
  .schedule-item {
    padding: 0.5rem 0;
  }
}
