.booking-row-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  min-width: 250px;
}

.booking-row-actions select {
  width: auto;
  min-width: 132px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, .64);
  overflow: auto;
}

.modal-card {
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid #e4e8ef;
  background: #fff;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .3);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.modal-head h2 {
  margin-bottom: 5px;
}

.modal-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: #eef2f6;
  color: #344054;
  font-size: 25px;
  line-height: 1;
}

.modal-close:hover {
  background: #e4e7ec;
}

@media (max-width: 760px) {
  .modal-backdrop {
    padding: 8px;
    place-items: start center;
  }

  .modal-card {
    max-height: calc(100vh - 16px);
    padding: 16px;
  }

  .booking-row-actions {
    min-width: 200px;
  }
}
