:root {
  --color-dark-blue: #192E3D;
}

.fc-col-header, .fc-scrollgrid-sync-table {
  margin: 0px;
}

.fc-daygrid-day-bottom {
  display: none;
}
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 0px;
  padding: 5px;
}

.wb-calendar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.wb-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.wb-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    position: relative;
}

.wb-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

/* Make event content multiline and readable */
.fc-daygrid-event {
  background-color: transparent;
  border: none;
}
.fc-daygrid-event .wb-event-price {    
    cursor: pointer;
    border: none;
    background-color: #CBE4EE;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1em;
    text-align: center;
  }



  .fc-bg-event {
    opacity: 1!important;
  }
  
  .wb-event-title {
    font-weight: 600;
    color: #111827;
  }
  
  .wb-event-price {
    color: #1f2937;
  }
  
  .wb-event-stock {
    color: #059669;
    font-size: 12px;
  }

.fc-daygrid-day-frame {
  height: 120px;
}
.fc-daygrid-day-top {
  position: absolute;
  top: 0px;
  right: 5px;
}
.fc-daygrid-day-events {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
  
  .wb-event {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }

  .wb-event .wb-event-stock {
    color: var(--color-dark-blue);
    font-size: 16px;
  }

.available .wb-event {
  background-color: #CBE4EE;
  border-radius: 50px;
  }

.fc-daygrid-day-events {
  padding: 10px 5px!important;
}
.available {
  background-color: #ffffff!important;
}

.unavailable {
    background-color: #FFCACA!important;
  }

  .unavailable .fc-daygrid-day-events, .fully-booked .fc-daygrid-day-events {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }