html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

th {
    position: sticky;
    top: 0;
    background-color: #f9f8f8;
    z-index: 2;
    border-bottom: 1px solid #eb9486;
}

tbody {
    display: block;
    max-height: 400px; /* pas aan naar wens */
    overflow-y: auto;
}

    thead, tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

.vertical-header {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    white-space: nowrap;
    border-top: 1px solid black; /* Lijntje nu onderaan */
    border-bottom: 0px;
}

.table-scroll {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

    .table-scroll thead th {
        position: sticky;
        top: 0;
        background: #f9f8f8;
        z-index: 2;
        border-bottom: 2px solid #eb9486;
        text-align: left;
    }

    .table-scroll tbody {
        display: block;
        max-height: 400px; /* Scrollbare hoogte */
        overflow-y: auto;
    }

        .table-scroll thead, .table-scroll tbody tr {
            display: table;
            width: 100%;
            table-layout: fixed;
        }

.vertical-header {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    white-space: nowrap;
    min-width: 40px;
}





