 /* Base mobile table styles (LTR) */
    @media (max-width: 767.98px) {
        .table-mobile-stack thead {
            display: none;
        }
        .table-mobile-stack tr {
            display: block;
            border: 1px solid #ddd;
            margin-bottom: 1rem;
            border-radius: .375rem;
        }
        .table-mobile-stack td {
            display: block;
            text-align: right;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 50%;
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        .table-mobile-stack td:before {
            content: attr(data-label);
            position: absolute;
            left: 0.75rem;
            font-weight: bold;
            text-align: left;
            white-space: nowrap;
        }
        .table-mobile-stack td:last-child {
            border-bottom: 0;
        }
    }
