html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

/* Light theme colors (default) */
.header-logo .logo-text {
    fill: #333333;
    transition: fill 0.3s ease;
}

.header-logo .logo-accent {
    fill: #FF6B35;
    transition: fill 0.3s ease;
}

/* Dark theme colors */
[data-bs-theme="dark"] .header-logo .logo-text {
    fill: #ffffff;
}

[data-bs-theme="dark"] .header-logo .logo-accent {
    fill: #FF8C42;
}

.header-logo {
    /*background-image: url('../images/logo.svg');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 140px;
    height: 50px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

/* Duinker odd/even rijen */
.odd-even-grid .dxbl-grid-table tr:nth-child(odd) td {
    background-color: rgba(128, 128, 128, 0.075) !important;
}

.odd-even-grid .dxbl-grid-table tr:nth-child(even) td {
    background-color: transparent !important;
}

/* Duinker Achtergrond detailview groups */
.dxbl-group-body-content {
    background-color: rgba(128, 128, 128, 0.15);
    border-radius: 6px;
}

.dxbl-grid {
    height: 100%;
    max-height: 2000px;
}

.nested-grid {
    min-height: 250px;
}

.dxbl-accordion .dxbl-accordion-item-indent {
    width: calc(var(--dxbl-accordion-item-indent) * 1.5rem) !important;
}




/* Duinker navigatie colapse and expand */

nav-toggle-container {
    display: flex;
    justify-content: flex-end;
    padding: 4px 8px;
    border-bottom: 1px solid var(--dxbl-accordion-group-border-color, #e0e0e0);
}

.nav-toggle-btn {
    background: none;
    border: 1px solid #888;
    border-radius: 4px;
    cursor: pointer;
    padding: 2px 8px;
    color: inherit;
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

    .nav-toggle-btn:hover {
        opacity: 1;
        background-color: rgba(128, 128, 128, 0.1);
    }

.nav-toggle-icon {
    font-weight: bold;
    font-size: 1.1rem;
}

