.modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.is-open {
  display: flex;
}

.modal-content {
  width: 100%;
  height: 100svh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
}

.modal-header button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #000;
}

.modal-header button h2{
  color: #000;
}

.modal-title {
  margin: 0;
}

.modal-close {
  border: 0;
  background: transparent;
  cursor: pointer;

}

.modal-body {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
}

body.is-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.modal.combobox[aria-expanded="true"] {
  background-color: #fafafa !important;
}

.modal .filter-group:not(:last-child) .combobox {
  border-bottom: 1px solid #e9ecef;
}

.modal .combobox__button {
  border: none !important;
  background-color: transparent !important;
}

.modal .combobox__panel {
  position: relative;
  border: none;
  box-shadow: none !important;
  width: 100% !important;
}

.modal .select-container[aria-expanded="true"] {
  background-color: #fafafa !important;
}

.modal .select-container__button {
  border: none !important;
  background-color: transparent !important;
}

.modal .select-container__dropdown {
  position: relative;
  border: none;
  box-shadow: none !important;
  width: 100% !important;
  background-color: transparent !important;
}

.modal .select-container[aria-expanded="true"] {
  background-color: #fafafa !important;
}
