﻿ /*Core table scroll behavior */
.table-scroll {
    overflow-y: auto;
}

   /*  Sticky table header */
    .table-scroll thead th {
        position: sticky;
        top: 0;
        z-index: 2;
        background-color: lightcyan;
    }

/* Height utilities */
.scroll-100 {
    height: 100px;
    max-height: 100px;
    overflow-y: auto;
}

.scroll-260 {
    height: 260px;
    max-height: 260px;
    overflow-y: auto;
}

.scroll-300 {
    height: 300px;
    max-height: 300px;
    overflow-y: auto;
}

.scroll-500 {
    height: 500px;
    max-height: 500px;
    overflow-y: auto;
}

.scroll-550 {
    height: 550px;
    max-height: 550px;
    overflow-y: auto;
}

.scroll-590 {
    height: 590px;
    max-height: 590px;
    overflow-y: auto;
}

.scroll-650 {
    height: 650px;
    max-height: 650px;
    overflow-y: auto;
}

.scroll-700 {
    height: 700px;
    max-height: 700px;
    overflow-y: auto;
}

/* Stronger selector to override Bootstrap styles */
tr.selectedrow {
    background-color: #ffe7a3 !important; /* Soft yellow highlight  highlight alternative color #ffe7a3 */
}

.selectedrow td {
    background-color: darkkhaki !important; /* Soft yellow highlight */
}
