body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fcfdfc;
    font-family: 'Inter', sans-serif;
  }
  .timetable-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 3rem;
    margin-top: -2rem;
    background: #2ef33e80;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
  }
  .timetable {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .time-slot {
    background: #f1f8e9;
    border-left: 5px solid #81c784;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    line-height: 1.4;
    transition: transform 0.2s ease;
  }
  
  .time-slot span {
    font-weight: bold;
    color: #33691e;
    display: block;
    margin-top: 0.2rem;
  }
  
  .time-slot:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  