 table.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  table.schedule-table th, table.schedule-table td {
    padding: 12px 10px;
    border: 1px solid #ddd;
    text-align: left;
  }

  table.schedule-table th {
    background-color: #512e8c;
    color: #fff;
    font-weight: 600;
  }

  table.schedule-table tr:nth-child(even) {
    background-color: #f2f2f2;
  }

  /* Red text for Exhibitor events */
  .exhibitor {
    color: red;
    font-weight: bold;
  }

  @media screen and (max-width: 768px) {
    table.schedule-table, table.schedule-table thead, table.schedule-table tbody, 
    table.schedule-table th, table.schedule-table td, table.schedule-table tr {
      display: block;
      width: 100%;
    }

    table.schedule-table tr {
      margin-bottom: 15px;
    }

    table.schedule-table th {
      display: none;
    }

    table.schedule-table td {
      border: none;
      padding: 8px;
      position: relative;
      text-align: left;
    }

    table.schedule-table td::before {
      content: attr(data-label);
      font-weight: bold;
      display: inline-block;
      width: 140px;
      color: #512e8c;
    }
  }