<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ajaxcalendar {
    margin: 3em 0em;
}

.ajaxcalendar .calHeader {
    display: flex;
    align-items: center;
    font-size: 200%;
    font-weight: bold;
    justify-content: center;
    margin-bottom: 0.25em;
    color: #000;
    text-align: center;
} 

.ajaxcalendar .calHeader span.monthNav a {
    display: inline-block;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 0.25em;
    margin: 0px 1em;
    background-color:#eaeaea;
    color: #666;
    text-decoration: none;
    cursor: pointer;
}
  
.ajaxcalendar .calHeader span.monthNav a:hover {
    border-color: #aaa !important;
    background-color: #aaa !important;
    color: #000 !important; 
}

.ajaxcalendar ul, .ajaxcalendar ol {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 0.5em;
    margin: 0 auto;
    max-width: 64em;
    padding: 0;
  }
  
  .ajaxcalendar li {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-left: 0;
    font-size: 140%;
  }
  
  .ajaxcalendar ul.weekdays {
    margin-bottom: 0.25em;
  }
  
  .ajaxcalendar ul.weekdays li {
    height: 2em;
    color: #333;
  }

  .ajaxcalendar ol.day-grid li {
    background-color: #eaeaea;
    color: #333;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    height: 3em;
    font-weight: bold;
    position:relative;
    cursor: pointer;
  }

  .ajaxcalendar ol.day-grid li:hover {
    border-color: #aaa !important;
    background-color: #aaa !important;
    color: #000 !important;
  }

  .ajaxcalendar ol.day-grid li.active {
    border-color: #37a600 !important;
    background-color: #37a600 !important;
    color: #fff !important;
  }

  .ajaxcalendar ol.day-grid li span {
    position:absolute;
    display:inline-block;
    bottom:0px;
    left:0px;
    height:8px;   
    min-width:8px;
    overflow: hidden;
    border-radius: 4px;
    //border-top-left-radius: 0px;
  }

  .ajaxcalendar ol.day-grid li span.unavailable {
    background-color:#ed1c24; 
  }
  
  .ajaxcalendar ol.day-grid li span.available {
    background-color:#37a600; 
  }
  
  .ajaxcalendar ul.weekdays abbr[title] {
    border: none;
    font-weight: 800;
    text-decoration: none;
  }
  
  .ajaxcalendar ol.day-grid li.other {
    background-color: #fcfcfc;
    color: #888;
  }

  ol.day-grid li.past,
  ol.day-grid li.past:hover {
    background-color: #fff !important;
    font-weight: normal !important;
    cursor: auto !important;
    border: 1px solid #d0d0d0 !important;
  }

  ol.day-grid li.weekend {
    background-color: #fcfcfc !important;
    color: #ed1c24 !important;
    cursor: auto !important;
    font: #333 !important;
  }

  ol.day-grid li.weekend:hover {
    background-color: #fcfcfc !important;
    color: #ed1c24 !important;
    cursor: auto !important;
    border: 1px solid #d0d0d0 !important;
  }

  ol.day-grid li.weekend span {
    display:none;
  }
  
  @media all and (max-width: 800px) {
    .ajaxcalendar ul, .ajaxcalendar ol {
      grid-gap: .25em;
    }
    
    .ajaxcalendar ul.weekdays li {
      font-size: 0;
    }
    
  }

  #calTimes {
    text-align: center;
    margin-top: 3em;
  }

  #calTimes .header {
    width:100%;
    font-size: 200%;
    font-weight: bold;
    color:#333;
    margin-bottom:1em;
  }

  #calTimes .msg {
    font-size: 120%;
    color:#ed1c24;
    font-weight: bold;
  }

  #calTimes #times {
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
    align-items: center;
    font-weight: bold;
    justify-content: center;
    color: #000;
    text-align: center;    
  }

  #calTimes #times a {
    background-color: #eaeaea;
    color: #333;
    font-size: 120%;
    font-weight: bold;    
    text-decoration: none;
    line-height: 3em;    
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    cursor: pointer;
    padding: 0px 1em;
    white-space: nowrap;
  }

  #calTimes #times a:hover {
    border-color: #aaa !important;
    background-color: #aaa !important;
    color: #000 !important;
  }
  
  #calTimes #times a.active {
    border-color: #37a600 !important;    
    background-color:#37a600 !important;
    color:#fff !important;
  }</pre></body></html>