.group-table {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* HEADER */
.group-table__header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #f5f5f5;
}

.group-table__header-row {
  display: grid;
  grid-template-columns: var(--grid-columns);
  align-items: center;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}

/* SCROLL */
.group-table__scroll {
  overflow-y: auto;
  flex: 1;
  position: relative;
}

/* ROWS */
.group-table__row {
  display: grid;
  grid-template-columns: var(--grid-columns);
  align-items: center;
  padding: 0px 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
}
.group-table__row:hover {
  background: #f9f9f9;
}

.group-table__cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* EMPTY STATE */
.group-table__empty-row {
  display: flex;
  justify-content: center;
  padding: 14px;
}

.group-table__empty-text {
  color: #888;
  font-style: italic;
}

/* GROUP */
.group {
  position: relative;
}

/* GROUP HEADER */
.group__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  background: #f9fbfb;
  border-bottom: 1px solid #eaeaea;
  font-weight: 600;
  color: #0f9d8a;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.group__header.is-pushed {
  transform: translateY(var(--push-offset, 0px));
}

.group__header-grid {
  display: grid;
  grid-template-columns: var(--grid-columns);
  align-items: center;
  flex: 1;
  min-width: 0;
}

.group__header-expand {
  grid-column: -2/-1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group__content {
  position: relative;
}.simple-autocomplete {
  position: relative;
  width: 400px;
  /* OUTLINED VARIANT */
}
.simple-autocomplete .input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.simple-autocomplete .autocomplete-spinner {
  position: absolute;
  right: 10px;
  width: 18px;
  height: 18px;
}
.simple-autocomplete .start-icon {
  position: absolute;
  left: 10px;
  font-size: 20px;
}
.simple-autocomplete .input {
  width: 100%;
  padding: 10px 12px;
  padding-left: 36px;
  padding-right: 36px;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.simple-autocomplete.outlined .input {
  border: 1px solid var(--mud-palette-primary-lighten);
  background: #fff;
}
.simple-autocomplete.outlined .input:focus {
  border-color: var(--mud-palette-primary);
  box-shadow: 0 0 0 2px rgba(15, 157, 138, 0.15);
}
.simple-autocomplete.outlined .start-icon {
  color: var(--mud-palette-primary-lighten);
}
.simple-autocomplete .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.simple-autocomplete.expand-dropdown .dropdown {
  right: auto;
  width: max-content;
  min-width: 100%;
}
.simple-autocomplete.expand-dropdown .dropdown-item {
  white-space: nowrap;
}
.simple-autocomplete .dropdown-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}
.simple-autocomplete .dropdown-item:hover {
  background: #f5f5f5;
}.wizard-hidesteps .mud-stepper-nav {
  display: none !important;
}
.wizard .mud-stepper-nav-connector .mud-stepper-nav-connector-line {
  border-top-width: 2px !important;
  border-color: #00b8a5;
}
.wizard .mud-stepper-nav {
  width: fit-content;
  min-width: 65%;
  margin: auto;
}
.wizard .mud-stepper-nav .mud-step {
  padding: 14px;
}
.wizard .mud-step-label .mud-paper {
  background: transparent;
}
.wizard .mud-step-label-content {
  margin: 0;
}
.wizard .mud-stepper-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 #C7EAE3;
  padding: 12px;
  margin-bottom: 10px;
  overflow-y: auto;
  height: 100%;
}
.wizard .mud-stepper-actions {
  padding: 0;
}
.wizard-buttons {
  display: flex;
  padding: 0 15px;
}
.wizard-buttons > button {
  font-size: 1.1rem;
}
.wizard .mud-stepper-nav-connector {
  margin-top: 25px !important;
}

.wizard-leave-modal .mud-dialog-title {
  font-size: 1.1rem;
  font-weight: bold;
}
.wizard-leave-modal .mud-dialog-actions {
  gap: 8px;
  justify-content: flex-end;
}