.md3-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--md-sys-color-surface-container-high);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 8px;
  padding: 0 8px 0 12px;
  height: 32px;
  transition: all 0.2s;
  min-width: 140px;
}

.md3-select-wrapper:hover {
  background-color: #36343b;
  border-color: var(--md-sys-color-on-surface-variant);
}

.md3-select-wrapper .material-symbols-rounded.prefix-icon {
  font-size: 18px;
  color: var(--md-sys-color-on-surface-variant);
  margin-right: 8px;
}

.md3-select-wrapper .material-symbols-rounded.suffix-icon {
  font-size: 20px;
  color: var(--md-sys-color-on-surface-variant);
  pointer-events: none;
}

.md3-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  color: var(--md-sys-color-on-surface);
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
  padding-right: 4px;
}

.md3-select-wrapper select option {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
  padding: 10px;
}