@layer vuetify-components {
  .v-color-picker-edit {
    display: flex;
    margin-top: 24px;
  }
  .v-color-picker-edit__input {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .v-color-picker-edit__input > input::-webkit-outer-spin-button,
  .v-color-picker-edit__input > input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .v-color-picker-edit__input:not(:last-child) {
    margin-inline-end: 8px;
  }
  .v-color-picker-edit__input input {
    padding: 0;
    font: inherit;
    border-style: none;
    border-radius: 4px;
    margin: 0 0 8px;
    min-width: 0;
    outline: none;
    text-align: center;
    width: 100%;
    height: 32px;
    background: color-mix(in srgb, rgb(var(--v-theme-surface-variant)) 20%, transparent);
    color: rgba(var(--v-theme-on-surface));
    -moz-appearance: textfield;
  }
  @media (forced-colors: active) {
    .v-color-picker-edit__input input {
      border-style: solid;
    }
  }
  .v-color-picker-edit__input span {
    font-size: 0.75rem;
  }
}