table {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
}
/*
 *Grid Table
 */
.grid-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    font-size: 0.7rem; /* Optimized for mkdocs-material */
}
.grid-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.grid-table td:first-child {
    text-align: left;
    border-right: 1px solid grey;
}
.grid-table tr:first-child td {
    border-bottom: 1px solid grey; 
};
/*
 *Complex Table
 */
.complex-table table {
    table-layout: fixed;
    width: 100%;
}
.complex-table td {
    border-left: 1px solid grey;
    border-bottom: 1px solid grey;
}
.complex-table tr:first-child td {
    border-top: 1px solid grey !important;
}
.complex-table td:last-child {
    border-right: 1px solid grey;
}
.complex-table > td,th {
    text-align: center;
}
.complex-table > td:first-child,th:first-child {
    text-align: left;
}


/*
 * Image container
 */
.image-container img {
    max-width: 250px;
    max-height: 250px;
};
