.ca-week-schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  font-family: sans-serif;
}

.ca-day {
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ca-day-header {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.ca-class {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .ca-week-schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}