.block-event-calendar-block {
  width: 100%;
  header {
    display: flex;
    justify-content: space-between;
    .view-link {
      text-align: right;
    }
  }
  h3 {
    color: #007AB3;
    cursor: default;
    font-weight: 700;
    text-align: left;
  }
  .calendar-block {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    .calendar {
      border: 1px solid #ccc;
      width: 100%;
    }
    .calendar th {
      background-color: #014b78;
      color: #fff;
    }
    .calendar th, .calendar td {
      text-align: center;
      padding: 5px;
      border: 1px solid #ddd;
      max-width: 30px;
    }
    .has-event {
      background-color: #eee;
      color: #000;
      cursor: pointer;
    }
    .has-event:hover {
      background-color: #014b78;
      color: #fff;
    }
    td.selected-date {
      background-color: #014b78;
      color: #fff;
    }
    .event-list-section {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-top: 20px;
      #event-list {
        ul {
          overflow-y: auto;
        }
        #selected-date {
          color: #007AB3;
          cursor: default;
          font-size: 22px;
          font-weight: 700;
          margin: 0 0 20px 0;
          text-align: left;
          text-transform: capitalize;
        }
      }
    }
  }
}