.spinner-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px;
    border-radius: 16px;
    background-color: #232323;
    box-shadow: 5px 5px 10px #0d0d0d,
                -5px -5px 10px #272727;
  }

  .spinner-input-container {
    position: relative;
    width: 50px;
    height: 30px;
    border-radius: 8px;
    background-color: #232323;
    box-shadow: inset 3px 3px 6px #0d0d0d,
                inset -3px -3px 6px #272727;
  }

  .spinner {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    /*padding: 0 12px;*/
    text-align: center;
    color: #d5a865;
    font-size: 14px;
    outline: none;
  }

  .spinner-button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 8px;
    background-color: #232323;
    color: #d5a865;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 3px 3px 6px #0d0d0d,
                -3px -3px 6px #272727;
    transition: all 0.2s ease;
  }

  .spinner-button:active {
    box-shadow: inset 2px 2px 4px #0d0d0d,
                inset -2px -2px 4px #272727;
  }

  /* Remove spinner buttons from number input */
  .spinner::-webkit-outer-spin-button,
  .spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .spinner[type=number] {
    -moz-appearance: textfield;
  }
