table.shop_table.shop_table_responsive.nosa-quick-order {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ccc; /* outer border */
    margin-bottom: 20px;
}

table.shop_table.shop_table_responsive.nosa-quick-order thead {
    background-color: #00b6c8;
}

table.shop_table.shop_table_responsive.nosa-quick-order th {
    font-weight: 500;
    color: #fff;
    padding: 10px;
}

table.shop_table.shop_table_responsive.nosa-quick-order td {
    border: 1px solid #ccc;
    padding: 5px 10px;
    vertical-align: middle;
}
._tblFtrQo{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 20px;
    padding-top: 20px;
    position: relative;
}
._tblFtrQo:after
{
    content: "";
    width: 150px;
    height: 2px;
    background-color: #ccc;
    top: 0;
    right: 0;
    position: absolute;
}

/* === Responsive view (convert rows into cards) === */
@media (max-width: 768px) {
    table.shop_table.shop_table_responsive.nosa-quick-order thead {
        display: none; /* hide header */
    }

    table.shop_table.shop_table_responsive.nosa-quick-order{
        border: none;
    }
    table.shop_table.shop_table_responsive.nosa-quick-order,
    table.shop_table.shop_table_responsive.nosa-quick-order tbody,
    table.shop_table.shop_table_responsive.nosa-quick-order tr,
    table.shop_table.shop_table_responsive.nosa-quick-order td {
        display: block;
        width: 100%;
    }

    table.shop_table.shop_table_responsive.nosa-quick-order tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 10px;
        padding: 10px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    table.shop_table.shop_table_responsive.nosa-quick-order td {
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        font-size: 14px;
    }

    table.shop_table.shop_table_responsive.nosa-quick-order td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #333;
    }

    /* nicer total layout */
    table.shop_table.shop_table_responsive.nosa-quick-order td.item-total {
        font-weight: bold;
        color: #00b6c8;
        border-top: 1px solid #eee;
        margin-top: 5px;
        padding-top: 8px;
    }
}