/* Make rows feel clickable */
.clickable-grid tbody tr {
    cursor: pointer !important;
}

/* Hover highlight */
.clickable-grid tbody tr:hover > td {
    background-color: rgba(0, 0, 0, 0.06) !important;
}

/* Keep headers normal */
.clickable-grid thead tr,
.clickable-grid thead th {
    cursor: default !important;
    text-decoration: none !important;
}
