.no-group {
    border-left: 1px solid lightgrey !important;
    border-right: 1px solid lightgrey !important;
}

tr {
    background-color: white;
}

tr:hover {
    background-color: #f0f0f0;
}

.modern-button {
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
    cursor: pointer;
    border-left: 1px solid lightgrey !important;
    border-right: 1px solid lightgrey !important;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modern-button:hover {
    background: #D5D6D6;
}

.status {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.green {
    background-color: #22c55e;
}

.gray {
    background-color: #d1d5db;
}

.yellow {
    background-color: #facc15;
}

.red {
    background-color: red;
}

.tooltip {
    position: relative;
    cursor: help;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 10;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th {
    padding: 8px;
    border: 1px solid #ddd;
}

.group-header::after,
.view-group-header::after {
    content: " ▼";
    float: right;
    font-size: 0.8em;
}

thead tr:nth-child(1) th {
    background-color: #EDEEEE;
    top: 0;
    border: 1px;
}

thead tr:nth-child(2) th {
    background-color: #d5d6d6;
}

thead th {
    position: sticky;
    top: 35px;
    z-index: 10;
    text-align: center;
    border-right: 1px solid #ddd;
}

thead th:last-child {
    border-right: none;
}

.sticky-header {
    position: sticky;
    top: 32px;
}

.group-color-1 {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
}

.group-color-2 {

}

td {
    padding: 8px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

td:first-child {
    text-align: left;
    border-left: none;
}

.table-responsive {
    max-height: 500px;
    overflow-y: auto;
}

td {
    text-align: center;
    border: 1px solid #ddd;
}

.td-view {
    text-align: left;
}

tr.category-row td {
    background-color: #EDEEEE;
    font-weight: bold;
    cursor: pointer;
}

.tooltip.fade.bottom {
    display: none !important;
}