﻿
.no-arrows::-webkit-outer-spin-button,
.no-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-arrows {
    -moz-appearance: textfield;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #6c757d; /* Defined border */
    border-radius: 3px; /* Uniform rounded edges */
    background-color: #fff;
    overflow: hidden;
    width: 180px;
    padding: 0;
}

    .quantity-wrapper .btn {
        width: 35px;
        height: 35px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background-color: #f8f9fa;
        transition: background-color 0.2s ease-in-out;
        font-size: 16px;
        font-weight: bold;
        padding: 0;
        border-radius: 0; /* No extra rounding */
    }

        .quantity-wrapper .btn:first-child {
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
        }

        .quantity-wrapper .btn:last-child {
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
        }

        .quantity-wrapper .btn:hover {
            background-color: #e2e6ea;
        }

        .quantity-wrapper .btn:focus {
            outline: none;
            box-shadow: none;
        }

    .quantity-wrapper input {
        width: 115px;
        height: 35px;
        text-align: center;
        font-size: 16px;
        border: none;
        outline: none;
        padding: 0;
        margin: 0;
        border-left: 1px solid #6c757d;
        border-right: 1px solid #6c757d;
        border-radius: 0; /* Matches button edges */
    }

        .quantity-wrapper input:focus {
            outline: none;
            box-shadow: none;
        }
