


body {
      
      font-family: "Teko", serif;
      background-color: #f9f9f9;
      margin: 0;
   
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #05009e;
    }

    .schedule {
      max-width: 800px;
      margin: 0 auto;
      border-collapse: collapse;
      width: 100%;
      background-color: white;
      box-shadow: 0 0 10px #05009e(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
      
    }

    .schedule thead {
      background-color: #05009e;
      color: white;
    }

    .schedule th,
    .schedule td {
      text-align: center;
      padding: 12px 15px;
      border: 1px solid #ddd;
      font-size: 25px;
    }

    .schedule tbody tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    @media screen and (max-width: 600px) {
      .schedule thead {
        display: none;
      }

      .schedule, .schedule tbody, .schedule tr, .schedule td {
        display: block;
        width: 100%;
        font-size: 20px;
      }

      .schedule tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        overflow: hidden;
        background-color: white;
      }

      .schedule td {
        text-align: left;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        font-size: 20px;
      }

      .schedule td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #05009e;
      }
    }