table {
    /* make responsive */
    width: 100%;
    border-collapse: collapse; /* Collapse borders for a cleaner look */
    text-align: left;
}

.table-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    /* center content */
}

.table-align-left {
    justify-content: left;
}

.table-align-center {
    justify-content: center;
}

.table-align-right {
    justify-content: right;
}

/* distance to top */
.table-margin-top-sm {
    margin-top: 5px;
}

.table-margin-top-md {
    margin-top: 10px;
}

.table-margin-top-lg {
    margin-top: 15px;
}

.table-margin-top-xl {
    margin-top: 20px;
}

.table-margin-top-xxl {
    margin-top: 25px;
}

.table-lg {
    width: 100%;
}

.table-md {
    width: 80%;
}

.table-sm {
    width: 60%;
}

.table-xs {
    width: 40%;
}

.table-font-xs {
    font-size: 0.6em;
}

.table-font-sm {
    font-size: 0.8em;
}

.table-font-md {
    font-size: 1em;
}

.table-font-lg {
    font-size: 1.2em;
}

.table-font-xl {
    font-size: 1.4em;
}

.table-font-xxl {
    font-size: 1.6em;
}

.table-bordered {
    border: 1px solid #333; /* Add a thin border around the table */
}

.cell-padding-sm {
    padding: 5px;
}

.cell-padding-md {
    padding: 10px;
}

.cell-padding-lg {
    padding: 15px;
}

.cell-padding-xl {
    padding: 20px;
}

.cell-padding-xxl {
    padding: 25px;
}

.table-striped {
    border-collapse: separate;
    border-spacing: 0;
}
.cell-Heading--sm {
    font-size: 1em;
    font-weight: bold;
}
.cell-Heading--md {
    font-size: 1.2em;
    font-weight: bold;
}
.cell-Heading--lg {
    font-size: 1.4em;
    font-weight: bold;
}
th, td {
    /* make responsive */

    text-align: left; /* Aligns text to the left */
}

th {
    background-color: #f2f2f2; /* Light background for header */
}

/* Optional styling for a more elegant look */

td {
    /* add wordwrap */
    word-wrap: break-word;
}
/* add wordwrap to div in td */

td div {
    word-wrap: break-word;
}
thead {
    font-weight: bold; /* Bold font for header row */
}
.table-header {
    font-weight: bold;
}
.btn {
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-primary {
    color: #fff;
    border-color: #222222;
}