.amount-and-input {
    display: flex;
    gap: 0px;
    border: 2px solid var(--text-3);
    border-radius: 20px;
    width: fit-content;
}

.amount {
    color: var(--text-1);
    background-color: none;
    padding: 10px;
    cursor: pointer;
    border: none;
}

#increment-amount {
    border-radius: 0px 20px 20px 0px;
}

#decrement-amount {
    border-radius: 20px 0px 0px 20px;
}

.amount:hover {
    background-color: var(--secondaryColor);

}

.amount-and-input input {
    border-inline: 2px solid var(--text-3);
    border-block: none;

    outline: none;
    width: 40px;
    text-align: center;
    font-size: 14px;
}

.amount-and-input input:focus,
.amount-and-input input:active {
    outline: none;
    box-shadow: none;
}

/* Chrome, Edge, Safari */
.amount-and-input input::-webkit-outer-spin-button,
.amount-and-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.amount-and-input input[type="number"] {
    -moz-appearance: textfield;
}