.simple-calendar {

  .calendar-heading nav {
    display: inline-block;
  }


  nav a{
    border-radius: 0.40rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    color: #0d6efd;
    padding-right: 10px;
    padding-left: 10px;
  }
  
  nav a:hover {
    color:rgb(10.4, 88, 202.4);
    background-color: rgba(0, 0, 0, 0.2);
  }
 
  td.day {
    font-size: small;
  }

  time{
       font-size: 1.5rem;
  }

  table {
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(221, 221, 221);
    border-collapse: collapse;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  tr {
    border-collapse: collapse;
  }

  th {
    padding: 6px;
    border-bottom: 2px solid rgb(221, 221, 221);
    border-collapse: collapse;
    border-left: 1px solid rgb(221, 221, 221);
    border-right: 1px solid rgb(221, 221, 221);
    border-top: 0px none rgb(51, 51, 51);
    box-sizing: border-box;
    text-align: left;
  }

  td {
    padding: 6px;
    vertical-align: top;
    width: 14%;

    border: 1px solid #ddd;
    border-top-color: rgb(221, 221, 221);
    border-top-style: solid;
    border-top-width: 1px;
    border-right-color: rgb(221, 221, 221);
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: rgb(221, 221, 221);
    border-left-style: solid;
    border-left-width: 1px;
  }



  .day {
    height: 100px;
  }

  .wday-0 {}
  .wday-1 {}
  .wday-2 {}
  .wday-3 {}
  .wday-4 {}
  .wday-5 {}
  .wday-6 {}

  .today {
    background: #FFFFC0
  }

  .past {}
  .future {}

  .start-date {}

  .prev-month {
    background: #DDD;
  }
  .next-month {
    background: #DDD;
  }
  .current-month {}

  .has-events {}

  @media (max-width: 600px) {
    th,
    td {
      padding: 2px;
      font-size: 0.9rem;
      max-width: 100px;;
    }
    .day {
      height: 60px;
    }

    .cal-event {
      font-size: 0.75rem;
    /* white-space: nowrap;
      overflow: hidden;  */
      /* text-overflow: ellipsis; */
    }
    .truncate-desktop { display: none !important; }
    .truncate-mobile { display: inline !important; }
  }
  @media (min-width: 601px) {
    .truncate-desktop { display: inline !important; }
    .truncate-mobile { display: none !important; }
  }
}
