/*!
 * Rode kleur van "primary"
 */

:root {
    --bs-primary: white;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

body
 {
    background-color:lightgrey;
 }

.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    overflow: hidden;
    background: transparent;
}

.loading-progress {
    width: 30%;
    height: 100%;
    background: #c62828;
    animation: loadingBar 1.2s infinite ease-in-out;
}

@keyframes loadingBar {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(450%); }
}

#content
 {
    margin-top:75px;
    margin-left:3px;
    margin-right:3px;
 }

th.filterrow
  {
    background-color: #c62828;
    color:white;
  }