.custom-number-input::-webkit-inner-spin-button, 
.custom-number-input::-webkit-outer-spin-button {
    background-color: #EB962A;
    color: white;
    border-radius: 2px;
    width: 20px;
    height: 20px;
}

.button-option {
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.button-option input {
    display: none;
}

.button-option span {
    color: black;
}

.button-option.selected {
    background-color: #292D5B;
    border-color: #292D5B;
}

.button-option.selected span {
    color: white;
}