/* ============================= */
/* FONT */
/* ============================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

html, body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}

/* ============================= */
/* BASIS KLEUREN / VARIABELEN */
/* ============================= */
:root {
    --sidebar-bg: #2f3338;
    --sidebar-hover: #3a3f45;
    --sidebar-active: #1f2226;
    --text-light: #ffffff;
    --text-dark: #222222;
    --text-muted: #5f6368;
    --primary: #1b6ec2;
    --primary-dark: #1861ac;
    --border-light: #e3e6ea;
    --page-bg: #ffffff;
}

/* ============================= */
/* ALGEMEEN */
/* ============================= */
a,
.btn-link {
    color: var(--primary);
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

/* ============================= */
/* BUTTONS */
/* ============================= */
.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary-dark);
}

/* ============================= */
/* FOCUS */
/* ============================= */
.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;
}

/* ============================= */
/* VALIDATION */
/* ============================= */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

/* ============================= */
/* ERROR BOUNDARY */
/* ============================= */
.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred.";
    }

/* ============================= */
/* FORM */
/* ============================= */
.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ============================= */
/* GLOBAL COLOR CLASSES */
/* Nieuwe nette kleurclasses */
/* ============================= */
.color-blue {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
}

.color-red {
    background: linear-gradient(135deg, #d93025, #ea4335);
}

.color-yellow {
    background: linear-gradient(135deg, #f9ab00, #fbbc04);
}

.color-green {
    background: linear-gradient(135deg, #188038, #34a853);
}

.color-purple {
    background: linear-gradient(135deg, #673ab7, #8e63ff);
}

.color-teal {
    background: linear-gradient(135deg, #00796b, #00acc1);
}

.color-pink {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}

/* ============================= */
/* OUDE TILE COLOR CLASSES */
/* Deze laten jouw bestaande Home.razor gewoon werken */
/* ============================= */
.tile-blue {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
}

.tile-red {
    background: linear-gradient(135deg, #d93025, #ea4335);
}

.tile-yellow {
    background: linear-gradient(135deg, #f9ab00, #fbbc04);
    color: white;
}

.tile-green {
    background: linear-gradient(135deg, #188038, #34a853);
}

.tile-purple {
    background: linear-gradient(135deg, #673ab7, #8e63ff);
}

.tile-teal {
    background: linear-gradient(135deg, #00796b, #00acc1);
}

.tile-pink {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}

/* ============================= */
/* TOP MENU */
/* Compact menu boven pagina's */
/* ============================= */
.top-menu {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-light);
    background: var(--page-bg);
}

    .top-menu .menu-mini {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.4rem 0.7rem;
        border-radius: 10px;
        color: #1f1f1f;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        transition: all 0.15s ease;
    }

        .top-menu .menu-mini:hover {
            background: #f5f7fa;
            transform: translateY(-1px);
            color: #1f1f1f;
        }

        .top-menu .menu-mini.active {
            background: transparent;
            color: #1f1f1f;
        }

/* ============================= */
/* ICON BOX */
/* Klein gekleurd blokje in topmenu */
/* ============================= */
.icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .icon-box i {
        color: white;
        font-size: 0.9rem;
    }

/* ============================= */
/* GLOBAL TILE SYSTEM */
/* Grote dashboardblokken */
/* ============================= */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 260px);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.menu-tile {
    width: 260px;
    min-height: 180px;
    border-radius: 18px;
    padding: 1.4rem;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font: inherit;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .menu-tile:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
        color: white;
    }

    .menu-tile:focus {
        outline: none;
    }

    .menu-tile:focus-visible {
        outline: 3px solid rgba(37, 140, 251, 0.35);
        outline-offset: 3px;
    }

.tile-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.tile-title {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================= */
/* DASHBOARD PLACEHOLDER */
/* Herbruikbaar wit blok voor pagina content */
/* ============================= */
.dashboard-section {
    margin-top: 1rem;
}

.dashboard-header {
    margin-bottom: 1rem;
}

    .dashboard-header h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .dashboard-header p {
        margin: 0;
        color: var(--text-muted);
    }

.dashboard-placeholder {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    min-height: 240px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}

    .placeholder-card i {
        font-size: 3rem;
        color: var(--primary);
    }

.clickable-row {
    cursor: pointer;
    transition: 0.15s ease-in-out;
}

    .clickable-row:hover td {
        background: #f3e8ff !important;
    }

.selected-row td {
    background: #ede9fe !important;
}

.edit-card {
    border-left: 5px solid #6f42c1;
}


/* ============================= */
/* FONT */
/* ============================= */
/*@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

html, body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}*/

/* ============================= */
/* BASIS KLEUREN / VARIABELEN */
/* ============================= */
/*:root {
    --sidebar-bg: #2f3338;
    --sidebar-hover: #3a3f45;
    --sidebar-active: #1f2226;
    --text-light: #ffffff;
    --text-dark: #222222;
    --text-muted: #5f6368;
    --primary: #1b6ec2;
    --primary-dark: #1861ac;
    --border-light: #e3e6ea;
    --page-bg: #ffffff;
}*/

/* ============================= */
/* ALGEMEEN */
/* ============================= */
/*a,
.btn-link {
    color: var(--primary);
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}*/

/* ============================= */
/* BUTTONS */
/* ============================= */
/*.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary-dark);
}*/

/* ============================= */
/* FOCUS */
/* ============================= */
/*.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;
}*/

/* ============================= */
/* VALIDATION */
/* ============================= */
/*.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}*/

/* ============================= */
/* ERROR BOUNDARY */
/* ============================= */
/*.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred.";
    }*/

/* ============================= */
/* FORM */
/* ============================= */
/*.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}*/

/* ============================= */
/* GLOBAL COLOR CLASSES */
/* Deze kleuren gebruik je voor grote tiles én kleine icon-boxen */
/* ============================= */
/*.color-blue {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
}

.color-red {
    background: linear-gradient(135deg, #d93025, #ea4335);
}

.color-yellow {
    background: linear-gradient(135deg, #f9ab00, #fbbc04);
}

.color-green {
    background: linear-gradient(135deg, #188038, #34a853);
}

.color-purple {
    background: linear-gradient(135deg, #673ab7, #8e63ff);
}

.color-teal {
    background: linear-gradient(135deg, #00796b, #00acc1);
}

.color-pink {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}*/

/* Tijdelijke backwards compatibility */
/* Hierdoor blijven oude tile-blue classes nog werken */
/*.tile-blue {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
}

.tile-red {
    background: linear-gradient(135deg, #d93025, #ea4335);
}

.tile-yellow {
    background: linear-gradient(135deg, #f9ab00, #fbbc04);
}

.tile-green {
    background: linear-gradient(135deg, #188038, #34a853);
}

.tile-purple {
    background: linear-gradient(135deg, #673ab7, #8e63ff);
}

.tile-teal {
    background: linear-gradient(135deg, #00796b, #00acc1);
}

.tile-pink {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}*/

/* ============================= */
/* TOP MENU */
/* Compact menu boven pagina's */
/* ============================= */
/*.top-menu {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-light);
    background: var(--page-bg);
}

    .top-menu .menu-mini {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.4rem 0.7rem;
        border-radius: 10px;
        color: #1f1f1f;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        transition: all 0.15s ease;
    }

        .top-menu .menu-mini:hover {
            background: #f5f7fa;
            transform: translateY(-1px);
            color: #1f1f1f;
        }

        .top-menu .menu-mini.active {
            background: transparent;
            color: #1f1f1f;
        }*/

/* Klein gekleurd icoonblokje in topmenu */
/*.icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .icon-box i {
        color: white;
        font-size: 0.9rem;
    }*/

/* ============================= */
/* GLOBAL TILE SYSTEM */
/* Grote dashboardblokken die je op alle pagina's kunt hergebruiken */
/* ============================= */
/*.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
*/

/*.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 260px);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.menu-tile {
    min-height: 180px;
    border-radius: 18px;
    padding: 1.4rem;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .menu-tile:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
        color: white;
    }

.tile-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.tile-title {
    font-size: 1.1rem;
    font-weight: 700;
}*/

/* ============================= */
/* DASHBOARD PLACEHOLDER */
/* Herbruikbaar wit blok voor pagina content */
/* ============================= */
/*.dashboard-section {
    margin-top: 1rem;
}

.dashboard-header {
    margin-bottom: 1rem;
}

    .dashboard-header h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    .dashboard-header p {
        margin: 0;
        color: var(--text-muted);
    }

.dashboard-placeholder {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    min-height: 240px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}

    .placeholder-card i {
        font-size: 3rem;
        color: var(--primary);
    }*/





/* ============================= */
/* FONT */
/* ============================= */
/*@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

html, body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}*/

/* ============================= */
/* KLEUREN BASIS */
/* ============================= */
/*:root {
    --sidebar-bg: #2f3338;
    --sidebar-hover: #3a3f45;
    --sidebar-active: #1f2226;
    --text-light: #ffffff;
    --text-dark: #222222;
    --primary: #1b6ec2;
    --primary-dark: #1861ac;
}*/

/* ============================= */
/* LINKS */
/* ============================= */
/*a, .btn-link {
    color: var(--primary);
}*/

/* ============================= */
/* BUTTONS */
/* ============================= */
/*.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary-dark);
}*/

/* ============================= */
/* FOCUS */
/* ============================= */
/*.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;
}*/

/* ============================= */
/* CONTENT */
/* ============================= */
/*.content {
    padding-top: 1.1rem;
}*/

/* ============================= */
/* HEADINGS */
/* ============================= */
/*h1:focus {
    outline: none;
}*/

/* ============================= */
/* VALIDATION */
/* ============================= */
/*.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}*/

/* ============================= */
/* ERROR BOUNDARY */
/* ============================= */
/*.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred.";
    }*/

/* ============================= */
/* FORM */
/* ============================= */
/*.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}*/

/* ============================= */
/* TOP MENU */
/* ============================= */

/*.top-menu {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    border-bottom: 1px solid #e3e6ea;
    background: #fff;
}

    .top-menu .menu-mini {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.4rem 0.7rem;
        border-radius: 10px;
        color: #1f1f1f;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        transition: all 0.15s ease;
    }

        .top-menu .menu-mini:hover {
            background: #f5f7fa;
            transform: translateY(-1px);
            color: #1f1f1f;
        }

        .top-menu .menu-mini.active {*/
            /*background: #eef3ff;*/
            /*color: #1f1f1f;
            background: transparent;
        }

.icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .icon-box i {
        color: white;
        font-size: 0.9rem;
    }

.tile-blue {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
}

.tile-red {
    background: linear-gradient(135deg, #d93025, #ea4335);
}

.tile-yellow {
    background: linear-gradient(135deg, #f9ab00, #fbbc04);
}

.tile-green {
    background: linear-gradient(135deg, #188038, #34a853);
}

.tile-purple {
    background: linear-gradient(135deg, #673ab7, #8e63ff);
}

.tile-teal {
    background: linear-gradient(135deg, #00796b, #00acc1);
}

.tile-pink {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}*/
