* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: white;
  color: #1f2b4d;
  line-height: 1.6;
}

.simple-header {
  padding: 32px 10%;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  flex-direction: column;
}

.back-link, .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  text-decoration: none;
  color: #41506f;
  font-weight: 600;
}

.learn-more {
  margin-bottom: 15px;
  margin-left: 10px;
}

.back-link svg, .learn-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.back-link:hover, .learn-more:hover {
  color:#4777d9;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

.learn-more:hover svg {
  transform: translateX(3px);
}

.button {
  display: inline-block;
  margin: 12px 0;
  padding: 10px 18px;
  background: #4777d9;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.button:hover {
  background-color: #0d1d3d;
  transition: 0.5s;
}

.simple-header h1 {
  font-size: 2.2rem;
}

.reserve-button {
  display: inline-block;
  padding: 10px 18px;
  background: #4777d9;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.reserve-button:hover {
  background: #345ec2;
}

.schedule-page {
  padding: 20px 10%;
}

.schedule-info {
  max-width: 700px;
}

.schedule-info p {
  margin-bottom: 20px;
  margin-top: 40px;
}

.schedule-section h2 {
  margin-top: 24px;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
} 

.schedule-grid.disabled {
  opacity: 0.45;
}

.schedule-card {
  padding: 28px;
  border: 1px solid #eee;
  border-radius: 18px;
}

.schedule-card h3 {
  color: #4777d9;
  margin-bottom: 12px;
}

.times {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.capacity-badge {
  padding: 4px 10px;
  background: #f6f8ff;
  color: #4777d9;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
} 

.footer {
  padding: 40px 10%;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .simple-header {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-page {
    padding: 45px 24px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .simple-header h1 {
    font-size: 1.8rem;
  }

  .reserve-button {
    margin-top: 24px;
  }
}