
.time-slots-modal-content {
    width: 400px;
  }
  
  .time-slot {
    display: inline-block;
    background-color: #1598ac;
    color: white;
    padding: 8px 16px;
    margin: 8px;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .time-slot:hover {
    background-color: #61a7b2;
  }
  
  #backToCalendarBtn {
    background-color: #ffffff;
    color: rgb(2, 2, 2);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-top: 1rem;
    cursor: pointer;
  }