html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.logo {
    margin-left: 40px;
    margin-top: 30px;
}

.login-center-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
}

.admin-order-box {
    min-height: 250px;
}

    .admin-order-box .new-order {
        width: 100%;
    }

    .admin-order-box .completed-order {
        width: 100%;
    }

.btn-black-white {
    background-color: black;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

    .btn-black-white:hover {
        background-color: #333; /* Slightly lighter on hover */
    }

/* Custom styles to remove list item borders and enable scrolling */
.custom-list {
    max-height: 300px; /* Set the height of the list container */
    overflow-y: auto; /* Enable vertical scrolling */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0;
}

.custom-list-item {
    border: none;
    padding: 5px 15px;
    margin-bottom: 2px;
    cursor: pointer;
}

    .custom-list-item:last-child {
        margin-bottom: 0;
    }

.cartCount {
    background-color: #007bff;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
}
li.flex-row{
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding-right:10px;
}

button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.adminOrderDivScroll {
    height: 350px;
    overflow-y: scroll;
}

.cartTotalPrice {
    text-align: right;
    padding-right: 40px !important;
}

.navbar-menu
{
    margin-left: 35px;
}