﻿/*
TODO generate a class for the column hover effect
table {
    border-spacing: 0;
    border-collapse: collapse;
    overflow: hidden;
    z-index: 1;
}

td, th {
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.table
td:hover::after,
.col:hover::after {
    background-color: var(--bs-table-hover-bg) !important;
    content: '\00a0' !important;
    height: 10000px !important;
    left: 0 !important;
    position: absolute !important;
    top: -5000px !important;
    width: 100% !important;
    z-index: -1 !important;
}*/