﻿@media (max-width: 768px) {
    /* Force-hide ALL labels by default */
    .k-grid td::before {
        content: none !important;
        display: none !important;
    }
    /* Show label ONLY when data-title has text */
    .k-grid td[data-title]:not([data-title=""])::before {
        content: attr(data-title) ":" !important;
        display: inline-block !important;
        font-weight: 600;
        margin-right: 6px;
    }
    /* Extra safety: empty title = NOTHING */
    .k-grid td[data-title=""]::before {
        content: none !important;
        display: none !important;
    }
}
/*@media (min-width: 993px) {*/

    /* On true desktop, do not apply any mobileclone layouts */
    /*.k-grid tbody tr {
        display: table-row !important;
    }

        .k-grid tbody tr td {
            display: table-cell !important;
        }
}*/