<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CREATED BY RS 14/11/24 */

/* Below rule makes background colours automatically printable */
body {
  -webkit-print-color-adjust:exact !important;
  print-color-adjust:exact !important;
}

.hub-week {
    margin-bottom: 25px;
}

.hub-day {
    display: flex;
    flex-wrap: wrap;
}

.hub-events {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
    flex-grow: 1;
}

.hub-dayofweek {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 7px;
    background: #2F73AD;
    color: #fff;
    font-size: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #000;
}

.hub-events &gt; div {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 7px;
    font-size: 15px;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
}

.hub-events &gt; div:first-of-type {
    border-top: none;
}

.hub-day:nth-of-type(odd) .hub-events &gt; div {
    background: #eee;
}

 .hub-events &gt; div:empty {
    display: none;
    padding: 0;
  }
  
  
 @media print, screen and (min-width: 768px) {
     
     .hub-events &gt; div:empty {
         display: flex;
     }
      
      .hub-events &gt; div:empty:nth-of-type(5), 
      .hub-events &gt; div:empty:nth-of-type(5) ~ div:empty,
      .hub-events &gt; div:empty:nth-of-type(5) ~ div:empty  ~ div:empty,
      .hub-events &gt; div:empty:nth-of-type(5) ~ div:empty  ~ div:empty ~ div:empty {
          display: none;
      }
  
      .hub-events {
          width: 80%;
          margin-bottom: 0;
          border-bottom: none;
      }
      
      .hub-dayofweek {
          width: 20%;
          border-bottom: none;
      }
      
      .hub-events &gt; div {
          width: 25%;
          border-left: none;
          border-right: 2px solid #000;
      }
      
      .hub-events &gt; div:first-of-type {
          border-top: 2px solid #000;
      }
      
      .hub-day:last-of-type .hub-events &gt; div,  .hub-day:last-of-type .hub-dayofweek {
          border-bottom: 2px solid #000;
      }
      
}

 @media print, screen and (min-width: 1200px) {

   .hub-events &gt; div:empty {
       display: flex;
  }
  
  .hub-events {
      width: 88%;
  }
  
  .hub-dayofweek {
      width: 11%;
  }
  
  .hub-events &gt; div {
    width: 12.5%;
}

     .hub-events &gt; div:empty:nth-of-type(5), 
      .hub-events &gt; div:empty:nth-of-type(5) ~ div:empty,
      .hub-events &gt; div:empty:nth-of-type(5) ~ div:empty  ~ div:empty,
      .hub-events &gt; div:empty:nth-of-type(5) ~ div:empty  ~ div:empty ~ div:empty {
          display: flex;
      }
}

        </pre></body></html>