.food-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Remove the default border and controls from the input */
.count-input {
    border: none;
    width: 50px;
    background-color: transparent;
    font-size: 1rem;
    pointer-events: none; /* Disable user input */
}

/* Ensure buttons stay small and aligned */
.btn-decrease, .btn-increase {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding: 0 !important;
    vertical-align:unset !important;
}


/* Remove number input controls for Chrome, Safari, Edge, and Opera */
.count-input::-webkit-outer-spin-button,
.count-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove number input controls for Firefox */
.count-input[type="number"] {
    -moz-appearance: textfield;
}

/* Search Input Styling */
.search-input {
    border: none;
    outline: none;
    width: 300px !important;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 20px 0 0 20px;
    background-color: transparent;
}


/* Container Styling */
.menu-tabs {
    border-bottom: none; /* Remove default Bootstrap border */
    gap: 15px; /* Add spacing between tabs */
}

/* Tab Button Styling */
.menu-tabs .nav-link {
    position: relative;
    font-size: 1.1rem;
    color: #666;
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    transition: color 0.3s;
}

/* Hover Effect: Change Text Color */
.menu-tabs .nav-link:hover {
    color: #007bff;
}

/* Active Tab: Bold Text */
.menu-tabs .nav-link.active {
    color: #007bff;
    font-weight: bold;
}

/* Underline Animation */
.menu-tabs .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease-in-out;
}

/* Show Underline for Hover and Active */
.menu-tabs .nav-link:hover::after,
.menu-tabs .nav-link.active::after {
    width: 100%;
}

#selectedItemsList .list-group-item {
    border: none; /* Remove all borders */
    background-color: #f8f9fa; /* Light background for each item */
    margin-bottom: 5px; /* Space between items */
    border-radius: 5px; /* Rounded corners for items */
    padding: 10px 15px; /* Adjust padding for items */
}

#selectedItemsList .list-group-item:last-child {
    margin-bottom: 0; /* Remove margin for the last item */
}

