:root {
    --bg-page: #F4F8FC;
    --bg-card: #FFFFFF;
    --bg-header: #EAF2FB;
    --primary:  #2563EB;
    --primary-hover: #1D4ED8;
    --secondary : #5F9EA0;
    --border: #D6E4F5;
    --text: #1F2937;
    --text-secondary: #64748B;
    --success: #16A34A;
    --warning: #F59E0B;
    --danger: #DC2626;
    --table-alt-row: #F8FBFF;
    --table-hover: #EDF5FF;
    --table-cell-border: #EEF3F8;

    --red : #E74C3C;
    --green : #2ECC71;
    --orange : #F39C12;
    --purple : #9B59B6;
    --chart1-border: #2563EB;
    --chart1-fill:   #C7D9FD;
    --chart2-border: #5F9EA0;
    --chart2-fill:   #D7E9EA;
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    margin: 0px;
    width: 10px;
    height:10px !important;
    background-color:transparent;
    border: none;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color:var(--bg-header);
    border-radius: 0px;
    border: none;
}

::-webkit-scrollbar-thumb {
    background-color: var(--border) !important;
    margin: 5px;
    padding: 5px;
    border-radius: 10px;
}


body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--bg-page);
    color: var(--text);
}

.dashboard-app {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.dashboard-topbar {
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.dashboard-user {
    margin-left: auto;
    color: var(--text-secondary);
}

.dashboard-main {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    width: 240px;
    min-width: 240px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 16px;
    overflow: auto;
    opacity: 1;
    transition:
        width 0.25s ease,
        min-width 0.25s ease,
        padding 0.25s ease,
        opacity 0.2s ease;
}

.dashboard-sidebar.hidden {
    width: 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    opacity: 0;
    border-right: none;
}

.dashboard-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-menu-item {
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.1s ease;
    user-select: none;
}

.dashboard-menu-item:hover {
    background: var(--bg-header);
    transform: translateX(3px);
}

.dashboard-menu-item:active {
    transform: scale(0.98);
}

.dashboard-menu-item.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px;
    overflow: auto;
}

.dashboard-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.dashboard-page-title {
    font-size: 24px;
    font-weight: 700;
}

.dashboard-page-title-small {
    font-size: 20px;
    font-weight: 600;
}


.dashboard-page-subtitle {
    color: var(--text-secondary);
    margin-top: 4px;
}

.dashboard-button {
    border: none;
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.dashboard-collapse-button {
    border: 2px solid var(--border);
    background: white;
    color: var(--border);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}


.dashboard-button.small {
    width: max-content;
    padding: 6px 10px;
    height: fit-content;
    font-size : 13px;
}

.dashboard-button:hover {
    background: var(--primary-hover);
}

.dashboard-card {
    position: relative;
    min-height: 0px;
    flex : 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0px;
    padding: 20px;
}

.dashboard-input,
.dashboard-select,
.dashboard-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text);
    font-size: 14px;
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        background .15s ease;
    outline: none;
}

.dashboard-input:hover,
.dashboard-select:hover,
.dashboard-textarea:hover {
    border-color: #BFD3F2;
}

.dashboard-input:focus,
.dashboard-select:focus,
.dashboard-textarea:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(37,99,235,.12);
}

.dashboard-input::placeholder,
.dashboard-textarea::placeholder {
    color: var(--text-secondary);
}

.dashboard-search {
    width: 100%;
    padding: 10px 40px 10px 12px;
    border: none;
    border-bottom: 1px solid var(--border);
    background: white;
    outline: none;
    font-size: 14px;
}

.dashboard-search:focus {
    border-bottom-color: var(--primary);
}

input[type="checkbox"] {
    margin: 0px;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid var(--border);
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        transform 0.1s ease;
    position: relative;
    flex-shrink: 0;
}

input[type="checkbox"]:hover {
    border-color: var(--primary);
}

input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

input[type="checkbox"]:checked:not(.table-checkbox)::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 4px;
    height: 7px;
    border: none; /*--solid white;--*/
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[type="checkbox"]:active {
    transform: scale(0.95);
}

input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.dashboard-dropdown {
    position: fixed;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    max-width: 400px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    z-index: 10000;
}

.dashboard-dropdown-header {
    position: relative;
    flex-shrink: 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.dashboard-dropdown-list {
    max-height: 250px;
    overflow-y: auto;
}

.dashboard-search-wrapper {
    position: relative;
}

.dashboard-search {
    width: 100%;
    padding: 10px 36px 10px 12px;
    border: none;
    border-bottom: 1px solid var(--border);
    background: white;
    outline: none;
    font-size: 14px;
}

.dashboard-search:focus {
    border-bottom-color: var(--primary);
}

.dashboard-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: 50%;
    user-select: none;
    font-size: 14px;
    line-height: 1;
}

.dashboard-search-clear:hover {
    background: var(--bg-header);
    color: var(--text);
}

.dashboard-dropdown-counter {
    position: absolute;
    top: 6px;
    right: 8px;
    min-width: 20px;
    height: 20px;
    padding: 0 8px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 999px;
    pointer-events: none;
}

.dashboard-dropdown-actions {
    display: flex;
    gap: 12px;
    padding: 8px 12px;
}

.dashboard-dropdown-actions button {
    border: none;
    background: none;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    padding: 0;
}

.dashboard-dropdown-actions button:hover {
    text-decoration: underline;
}

.dashboard-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
}

.dashboard-dropdown-item:hover {
    background: var(--bg-header);
}

.dashboard-dropdown-item.selected {
    background: rgba(37,99,235,.08);
}

.dashboard-dropdown-empty {
    padding: 16px;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    user-select: none;
}

.dashboard-input,
.dashboard-select,
.dashboard-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.dashboard-input:hover,
.dashboard-select:hover,
.dashboard-textarea:hover {
    border-color: #BFD3F2;
}

.dashboard-input:focus,
.dashboard-select:focus,
.dashboard-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.dashboard-input::placeholder,
.dashboard-textarea::placeholder {
    color: var(--text-secondary);
}

input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid var(--border);
    border-radius: 5px;
    background: white;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition:
        background .15s ease,
        border-color .15s ease,
        transform .1s ease;
}

input[type="checkbox"]:hover {
    border-color: var(--primary);
}

input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

input[type="checkbox"]:checked:not(.table-checkbox)::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 0px;
    width: 4px;
    height: 7px;
    border: none; /*solid white;*/
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[type="checkbox"]:active {
    transform: scale(0.95);
}

input[type="checkbox"]:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(37,99,235,.15);
}

.sortable {
    user-select: none;
}

.sort-indicator {
    float: right;
    color: var(--primary);
    font-size: 12px;
}

.dashboard-table-wrapper {
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    scrollbar-gutter: stable;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    color: var(--text);
}

.dashboard-table th {
    text-overflow: ellipsis;
    overflow: hidden;
    height: 40px;
    background: var(--bg-header);
    border: 1px solid var(--border);
    padding: 8px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
}

#tableContainer{
    height: 100%;
    display: flex;
    flex-direction: column;
}

#tableContainer1{
    height: 100%;
    display: flex;
    flex-direction: column;
}

#tableContainer2{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-table-filter th {
    background: var(--bg-page);
    height: auto;
    overflow : visible;
}
.dashboard-table-filters {
    flex: 0;
}

.dashboard-table-header{
    position: relative;
    flex: 0;
}

.dashboard-table-counter {
    position: absolute;
    top: 0px;
    right: 14px;
    font-size: 11px;
    color: var(--text-secondary);
    pointer-events: none;
}

.dashboard-table td {
    position: relative;
    border: 1px solid var(--table-cell-border);
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size : 12px;
}

.dashboard-table tbody tr:nth-child(even) {

}

.dashboard-table tbody tr:hover {
    background: var(--table-hover);
}

.dashboard-table input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    color: var(--text);
    padding: 4px 6px;
    font: inherit;
}

.dashboard-table input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

.dashboard-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.dashboard-hidden {
    display: none !important;
}

.dashboard-loader {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.dashboard-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: dashboardPulse 1.2s infinite ease-in-out;
}

.dashboard-dot-red {
    background: #E74C3C;
    animation-delay: 0s;
}

.dashboard-dot-orange {
    background: #F39C12;
    animation-delay: .15s;
}

.dashboard-dot-green {
    background: #2ECC71;
    animation-delay: .30s;
}

.dashboard-dot-purple {
    background: #9B59B6;
    animation-delay: .45s;
}

@keyframes dashboardPulse {
    0%, 80%, 100% {
        transform: scale(.65);
        opacity: .35;
    }
    40% {
        transform: scale(1.25);
        opacity: 1;
    }
}

#dashboardMessages {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
}

.dashboard-mini-message {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    user-select: none;

    animation: dashboardToastIn .25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.dashboard-mini-message.success {
    background: var(--green);
}

.dashboard-mini-message.error {
    background: var(--red);
}

.dashboard-mini-message.warning {
    background: var(--orange);
}

.dashboard-message {
    min-width: 280px;
    max-width: 450px;
    padding: 14px 16px;
    border-radius: 0px;
    color: white;
    font-weight: normal;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    animation: dashboardToastIn .25s ease;
    cursor: pointer;
}

.dashboard-message.success {
    background: var(--success);
}

.dashboard-message.warning {
    background: var(--warning);
}

.dashboard-message.error {
    background: var(--danger);
}

@keyframes dashboardToastIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dashboardToastOut {

    from {

        opacity: 1;

        transform:
            translateX(0);
    }

    to {

        opacity: 0;

        transform:
            translateX(40px);
    }
}

.signal:before {
    content: "";
    position: absolute;
    opacity: 0.5;
    z-index: 0;
    background-color: gray;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: calc(50% - 10px);
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.signal-large:before {
    content: "";
    position: absolute;
    opacity: 0.5;
    z-index: 0;
    background-color: gray;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.signal-0red:before{
    background-color: red;
}

.signal-1orange:before{
    background-color: orange;
}

.signal-2green:before{
    background-color: green;
}

.signal-3purple:before{
    background-color: purple;
}

.pie-graph{
    background:white;
    border-bottom: 1px solid var(--border);
    width: 300px;
    height: 50px;
    border-radius: 5px;
}

.vak-wrapper {
    position: relative;
    display: inline-block;
}

.binhalen-badge {
    position: absolute;
    top: 0px;
    right: -20px;
    background: red;
    color: white;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}

.notify-badge {
    position: absolute;
    left: -20px;
    color: goldenrod;
    cursor: pointer;
}

.filter-clear-cell {
    text-align: center;
    width: 40px;
}

.dashboard-clear-filters.hidden {
    display: none;
}

.filter-anchor {
    position: relative;
}

.dashboard-clear-filters {
    position: absolute;
    top: 0;
    right: -18px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: all .15s ease;
}

.dashboard-clear-filters:hover {
    background: var(--primary-hover);
}

.dashboard-clear-filters.visible {
    display: flex;
}

.fas{
    font-style: normal;
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
}

.inactive{
    background : var(--primary);
    opacity: 0.5;
}
.inactive:hover{
    background: var(--primary);
    opacity: 0.3;
}

.text-pill {
    font-size: 12px;
    display: inline-block;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 8px;
    border-radius: 8px;
    background: var(--border);
    color: var(--text);
    font-weight: 400;
    user-select: none;
    margin-right: 5px;
    margin-bottom: 2px;
    vertical-align: middle;
}
#headerText{
    margin-top: 5px;
    font-size: 12px;
}

.leerjaar{
    text-align:  start;
    min-width: 200px;
    float: left;
    border: none;
    margin: 2px;
    border-radius: 0px;
    border: 1px solid var(--border);
    outline: none;
    cursor: pointer;
    padding: 5px;
    transition: 0.3s;
    font-size: 11px;
    color : var(--text);
    background: var(--bg-card);
    min-height: 48px;
}

.leerjaar:hover{
    background-color: var(--primary-hover) !important;
    color: white;
}

.leerjaar.active{
    background-color: var(--primary) !important;
    color: white;
}

.filter-move {
    position: absolute;
    top: -7px;
    left: 50%;
    translate: -50% 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 14px;
    border-radius: 6px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    cursor: grab;
    user-select: none;
    border: none
}

.filter-move:active {
    cursor: grabbing;
}

.filter-move:hover{
    background: var(--primary-hover);
}

.cijfers-button{
    line-height: 16px;
    height: auto;
}

input[type="checkbox"].table-checkbox {
    appearance: none;
    -webkit-appearance: none;
    accent-color: initial;
    max-width: 60px;
    height: 16px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--background);
    cursor: pointer;
}



input[type="checkbox"].table-checkbox:hover {
    border-color: var(--primary);
}

input[type="checkbox"].table-checkbox:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.dashboard-menu-admin {
    margin-top: 6px;
    padding: 6px 8px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.1s ease;
}

.dashboard-menu-admin:hover {
    background: rgba(var(--primary-rgb), 0.12);
    transform: translateX(3px);
}

.dashboard-menu-admin:active {
    transform: scale(0.98);
}

.dashboard-menu-admin.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.table-action{
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 8px;
    border-radius: 8px;
    background: var(--border);
    color: var(--text);
    font-weight: 400;
    user-select: none;
    vertical-align: middle;
}

.table-date-filter {
    display: flex;
    align-items: center;
    gap: 2px;
}

.table-date-filter input[type="date"] {
    flex: 1;
    min-width: 0;
    padding: 2px 4px;
    font-size: 11px;
    height: 22px;
    box-sizing: border-box;
}

.table-date-filter span {
    flex: none;
    font-size: 11px;
    color: var(--text-light);
}

.table-date-filter input[type="date"] {
    width: 95px;
    min-width: 0;
    padding: 2px;
    font-size: 9px;
}

.drag-column{
    width:32px;
    text-align:center;
}

.table-drag{
    cursor:grab;
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 2px 8px;
    border-radius: 8px;
    background: var(--border);
    color: var(--text);
    font-weight: 400;
    user-select: none;
    vertical-align: middle;
}

.table-drag:active{
    cursor:grabbing;
}

.dragging{
    opacity:.4;
}

.drag-over{
    outline:2px solid var(--primary);
}

.dashboard-empty-state {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #7b8794;
}

.dashboard-empty-state h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #4b5563;
}

.dashboard-empty-state p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #8a94a6;
}

.support-section{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.support-card{
    display:flex;
    gap:16px;
    align-items:flex-start;

    padding:16px;

    border:1px solid var(--border);
    border-radius:8px;

    cursor:pointer;
    transition:.15s;
}

.support-card:hover{
    background:var(--bg-page);
    border-color:var(--primary);
}

.support-card i{
    width:22px;
    margin-top:2px;
    color:var(--primary);
    font-size:18px;
}

.support-title{
    font-weight:600;
    margin-bottom:4px;
}

.support-text{
    font-size:13px;
    color:var(--text-muted);
    line-height:1.4;
}

.support-version{
    margin-top:20px;
    padding-top:16px;
    border-top:1px solid var(--border);
    color:var(--text-muted);
    font-size:12px;
}

.sidebar-footer {
    margin-top: auto;
    padding: 5px 0px;
    border-top: 1px solid var(--border);
    color: var(--pimary);
    font-size: 11px;
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color .2s ease;
    margin-top: 6px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.sidebar-footer a i {
    width: 20px;
    text-align: center;
    font-size: 12px;
}

.sidebar-footer a:hover {
    color: #2f64df;
}

.dashboard-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.indicator-card{
    background:white;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    margin-bottom: 8px;
    padding:16px;
    transition:.2s;
    overflow:auto;
    margin-bottom : 15px;
}

.home-card{
    background:white;
    border:1px solid var(--border);
    border-radius:10px;
    padding:16px;
    box-shadow:0 2px 6px rgba(0,0,0,.05);
    transition:.2s;
    cursor:pointer;
    overflow:auto;
    height: 100%;
}

.home-card:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    border-color: var(--primary);
}

.home-card-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:4px;
}

.home-card-title{
    font-size:28px;
    font-weight:600;
    color:var(--text);
    margin:0;
}

.home-card-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.home-card-title{
    font-size:24px;
    font-weight:600;
    color:var(--text);
    margin:0;
}

.home-card-text{
    color:#666;
    font-size:13px;
    line-height:1.7;
}

.home-card-icon.rogp{
    background:#eef4ff;
    color:#2f63e1;
}

.home-card-icon.indicatoren{
    background:#fcebeb;
    color:#e12f2f;
}

.home-card-icon.nomodules{
    background:  #F39C1233;
    color : var(--orange);
}

.home-card-icon.blocked{
    background:  #E74C3C33;
    color : var(--red);
}

.home-card-icon.absenties{
    background:#fff6e8;
    color:#f39c12;
}

.home-card-icon.cijfers{
    background:#eef8ef;
    color:#2e9d58;
}

.home-card-icon.observaties{
    background:#f6efff;
    color:#8e44ad;
}

.home-card-icon.pta{
    background:#eef7ff;
    color:#2980b9;
}

.home-card-icon.examenarena{
    background:#fff6e8;
    color:#f39c12;
}

.modules-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px;
}

.modules-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #f5f8ff;
    color: var(--primary);
    font-size: 22px;
}

.modules-header-content {
    flex: 1;
}

.modules-header-content h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.modules-header-content p {
    margin: 6px 0 0;
    font-size: 15px;
    color: #6b7280;
}

.modules-divider {
    border: 0;
    border-top: 1px solid #e6ebf3;
    margin: 8px 0;
}

.red-stripes {
    background: repeating-linear-gradient(
    135deg,
    #fff 0 3px,
    #8b000022 3px 6px
)
}

.number-slider {
    position: relative;
    width: 90px;
    height: 32px;
    margin: 0 auto;
}

.number-slider-range {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 12px;
    margin: 0;
    padding: 0 !important;
    border : none !important;
    outline: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
}

.number-slider-range::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 4px;
    background: #ddd;
}

.number-slider-range::-moz-range-track {
    height: 4px;
    border-radius: 4px;
    background: #ddd;
}

.number-slider-range::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    margin-top: -3px;
    border: none;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
}

.number-slider-range::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
}

.number-slider-input {
    position: absolute;
    top: -2px;
    width: 40px;
    padding: 0 4px;
    outline: none !important;
    border: none !important;
    background: transparent !important;
    text-align: center;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}


.number-slider-input,
.number-slider-input:focus,
.number-slider-input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.number-slider-range,
.number-slider-range:focus,
.number-slider-range:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.dashboard-table td.number-slider-cell {
    padding: 0;
}