/* _content/FrontEnd/Components/Help/FlowVisualizationComponent.razor.rz.scp.css */
/* =============================================================================
   Flow Visualization Component Styles
   Mobile-first responsive design with horizontal/vertical layouts
   ============================================================================= */

/* Container */
.flow-visualization[b-ortyzfjvx7] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header */
.flow-header[b-ortyzfjvx7] {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.flow-title[b-ortyzfjvx7] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.flow-description[b-ortyzfjvx7] {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.flow-category[b-ortyzfjvx7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Horizontal Flow (Desktop) */
.flow-steps-horizontal[b-ortyzfjvx7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
}

.flow-steps-horizontal .flow-step[b-ortyzfjvx7] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    max-width: 160px;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.flow-steps-horizontal .flow-step:hover[b-ortyzfjvx7] {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flow-steps-horizontal .flow-step.current[b-ortyzfjvx7] {
    background: #e7f1ff;
    border-color: #0d6efd;
    border-width: 3px;
}

.flow-steps-horizontal .flow-step.clickable[b-ortyzfjvx7] {
    cursor: pointer;
}

.flow-steps-horizontal .flow-step.clickable:hover[b-ortyzfjvx7] {
    background: #d0e7ff;
    border-color: #0a58ca;
}

.flow-steps-horizontal .flow-step.clickable:focus[b-ortyzfjvx7] {
    outline: 3px solid #0d6efd;
    outline-offset: 2px;
}

/* Vertical Flow (Mobile) */
.flow-steps-vertical[b-ortyzfjvx7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.flow-steps-vertical .flow-step[b-ortyzfjvx7] {
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.flow-steps-vertical .flow-step:active[b-ortyzfjvx7] {
    transform: translateX(4px);
    background: #d0e7ff;
}

.flow-steps-vertical .flow-step.current[b-ortyzfjvx7] {
    background: #e7f1ff;
    border-color: #0d6efd;
    border-width: 3px;
}

.flow-steps-vertical .flow-step.clickable[b-ortyzfjvx7] {
    cursor: pointer;
}

/* Step Number */
.flow-step-number[b-ortyzfjvx7] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.flow-steps-vertical .flow-step-number[b-ortyzfjvx7] {
    margin-bottom: 0;
}

.flow-step.current .flow-step-number[b-ortyzfjvx7] {
    background: #0a58ca;
    animation: pulse-b-ortyzfjvx7 2s ease-in-out infinite;
}

@keyframes pulse-b-ortyzfjvx7 {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
}

/* Step Content */
.flow-step-content[b-ortyzfjvx7] {
    text-align: center;
    flex-grow: 1;
}

.flow-step-icon[b-ortyzfjvx7] {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.flow-step-title[b-ortyzfjvx7] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
}

.flow-step-module[b-ortyzfjvx7] {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Booking Status */
.flow-step-booking[b-ortyzfjvx7] {
    margin-top: 0.5rem;
    font-size: 1.25rem;
}

.flow-steps-vertical .flow-step-booking[b-ortyzfjvx7] {
    margin-top: 0;
}

.flow-step-booking i[b-ortyzfjvx7] {
    display: inline-block;
}

/* Tooltip (Desktop only) */
.flow-step-tooltip[b-ortyzfjvx7] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    width: 220px;
    padding: 0.75rem;
    background: #212529;
    color: #ffffff;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.flow-step-tooltip[b-ortyzfjvx7]::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #212529;
}

.flow-step:hover .flow-step-tooltip[b-ortyzfjvx7] {
    opacity: 1;
}

/* Arrow between steps */
.flow-arrow[b-ortyzfjvx7] {
    font-size: 1.5rem;
    color: #6c757d;
    flex-shrink: 0;
}

.flow-arrow-vertical[b-ortyzfjvx7] {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    font-size: 1.5rem;
    color: #6c757d;
}

/* Legend */
.flow-legend[b-ortyzfjvx7] {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

.flow-legend-title[b-ortyzfjvx7] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
}

.flow-legend-items[b-ortyzfjvx7] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-legend-item[b-ortyzfjvx7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #495057;
}

.flow-legend-item i[b-ortyzfjvx7] {
    font-size: 1.125rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .flow-title[b-ortyzfjvx7] {
        font-size: 1.5rem;
    }
}

/* Scrollbar Styling (Desktop) */
@media (min-width: 1024px) {
    .flow-steps-horizontal[b-ortyzfjvx7]::-webkit-scrollbar {
        height: 8px;
    }

    .flow-steps-horizontal[b-ortyzfjvx7]::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .flow-steps-horizontal[b-ortyzfjvx7]::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    .flow-steps-horizontal[b-ortyzfjvx7]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* Focus Styles (WCAG 2.1 AA) */
.flow-step:focus[b-ortyzfjvx7] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .flow-step[b-ortyzfjvx7] {
        border-width: 3px;
    }
    
    .flow-step.current[b-ortyzfjvx7] {
        border-width: 4px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .flow-step[b-ortyzfjvx7],
    .flow-arrow[b-ortyzfjvx7],
    .flow-step-tooltip[b-ortyzfjvx7] {
        transition: none;
        animation: none;
    }
}

/* Print Styles */
@media print {
    .flow-steps-horizontal[b-ortyzfjvx7] {
        overflow-x: visible;
    }
    
    .flow-step[b-ortyzfjvx7] {
        page-break-inside: avoid;
    }
    
    .flow-step-tooltip[b-ortyzfjvx7] {
        display: none;
    }
}
/* _content/FrontEnd/Components/Help/HelpContentComponent.razor.rz.scp.css */
/* =============================================================================
   Help Content Component Styles
   Mobile-first responsive design with WCAG 2.1 AA compliance
   ============================================================================= */

/* Container */
.help-content-container[b-19j171c67g] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #212529;
}

/* Article */
.help-article[b-19j171c67g] {
    background: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .help-article[b-19j171c67g] {
        padding: 2rem;
    }
}

/* Header */
.help-header[b-19j171c67g] {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.help-title[b-19j171c67g] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .help-title[b-19j171c67g] {
        font-size: 2rem;
    }
}

.help-summary[b-19j171c67g] {
    font-size: 1rem;
    color: #6c757d;
}

.help-metadata[b-19j171c67g] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Sections */
.help-section[b-19j171c67g] {
    scroll-margin-top: 2rem;
}

.help-section-title[b-19j171c67g] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .help-section-title[b-19j171c67g] {
        font-size: 1.5rem;
    }
}

.help-section-content[b-19j171c67g] {
    font-size: 1rem;
    color: #212529;
}

/* Steps */
.help-steps[b-19j171c67g] {
    counter-reset: step-counter;
}

.help-step[b-19j171c67g] {
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.help-step:hover[b-19j171c67g] {
    background: #e7f1ff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.help-step-highlighted[b-19j171c67g] {
    background: #fff3cd;
    border-left-color: #ffc107;
    animation: pulse-b-19j171c67g 2s ease-in-out infinite;
}

@keyframes pulse-b-19j171c67g {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }
}

.help-step-number[b-19j171c67g] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.help-step-highlighted .help-step-number[b-19j171c67g] {
    background: #ffc107;
    color: #000;
}

.help-step-title[b-19j171c67g] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.help-step-description[b-19j171c67g] {
    font-size: 1rem;
    color: #495057;
}

.help-step-outcome[b-19j171c67g] {
    font-size: 0.9375rem;
    color: #198754;
    padding: 0.5rem;
    background: #d1e7dd;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
}

/* Next flows */
.help-next-flows[b-19j171c67g] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-next-flow-card[b-19j171c67g] {
    background: #e7f1ff;
    border-left: 4px solid #0dcaf0;
    padding: 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.help-next-flow-card:hover[b-19j171c67g] {
    background: #cfe2ff;
    transform: translateX(4px);
}

/* Related topics */
.help-related-topics[b-19j171c67g] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Footer */
.help-footer[b-19j171c67g] {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Markdown content styling */
.help-section-content h1[b-19j171c67g],
.help-section-content h2[b-19j171c67g],
.help-section-content h3[b-19j171c67g],
.help-section-content h4[b-19j171c67g] {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #212529;
}

.help-section-content h1[b-19j171c67g] {
    font-size: 1.75rem;
}

.help-section-content h2[b-19j171c67g] {
    font-size: 1.5rem;
}

.help-section-content h3[b-19j171c67g] {
    font-size: 1.25rem;
}

.help-section-content h4[b-19j171c67g] {
    font-size: 1.125rem;
}

.help-section-content p[b-19j171c67g] {
    margin-bottom: 1rem;
}

.help-section-content ul[b-19j171c67g],
.help-section-content ol[b-19j171c67g] {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.help-section-content li[b-19j171c67g] {
    margin-bottom: 0.5rem;
}

.help-section-content code[b-19j171c67g] {
    background: #f8f9fa;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875em;
    color: #d63384;
}

.help-section-content pre[b-19j171c67g] {
    background: #282c34;
    color: #abb2bf;
    padding: 1rem;
    border-radius: 0.375rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.help-section-content pre code[b-19j171c67g] {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: 0.875rem;
}

.help-section-content blockquote[b-19j171c67g] {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #495057;
}

.help-section-content img[b-19j171c67g] {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1rem 0;
}

.help-section-content table[b-19j171c67g] {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.help-section-content table th[b-19j171c67g],
.help-section-content table td[b-19j171c67g] {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.help-section-content table th[b-19j171c67g] {
    background: #f8f9fa;
    font-weight: 600;
}

/* Responsive table on mobile */
@media (max-width: 767px) {
    .help-section-content table[b-19j171c67g] {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Focus styles for accessibility (WCAG 2.1 AA) */
.help-content-container a:focus[b-19j171c67g],
.help-content-container button:focus[b-19j171c67g] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .help-step[b-19j171c67g] {
        border-width: 3px;
    }
    
    .help-section-title[b-19j171c67g] {
        font-weight: 700;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .help-step[b-19j171c67g],
    .help-next-flow-card[b-19j171c67g] {
        transition: none;
    }
    
    .help-step-highlighted[b-19j171c67g] {
        animation: none;
    }
}

/* Print styles */
@media print {
    .help-content-container[b-19j171c67g] {
        background: #ffffff;
    }
    
    .help-step[b-19j171c67g] {
        page-break-inside: avoid;
    }
    
    .help-section[b-19j171c67g] {
        page-break-inside: avoid;
    }
}
/* _content/FrontEnd/Components/Help/HelpDrawerComponent.razor.rz.scp.css */
/* =============================================================================
   Help Drawer Component Styles
   Mobile-first responsive slide-out drawer
   ============================================================================= */

/* Overlay */
.help-drawer-overlay[b-cuijpe6rh0] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    animation: fadeIn-b-cuijpe6rh0 0.3s ease forwards;
}

@keyframes fadeIn-b-cuijpe6rh0 {
    to {
        opacity: 1;
    }
}

/* Drawer */
.help-drawer[b-cuijpe6rh0] {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    background: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    z-index: 1051;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    overflow: hidden;
}

@media (min-width: 768px) {
    .help-drawer[b-cuijpe6rh0] {
        width: 600px;
        max-width: 90vw;
    }
}

@media (min-width: 1024px) {
    .help-drawer[b-cuijpe6rh0] {
        width: 700px;
    }
}

.help-drawer.open[b-cuijpe6rh0] {
    right: 0;
}

/* Header */
.help-drawer-header[b-cuijpe6rh0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background: #f8f9fa;
    flex-shrink: 0;
}

.help-drawer-title[b-cuijpe6rh0] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    display: flex;
    align-items: center;
}

.help-drawer-header .btn-close[b-cuijpe6rh0] {
    margin-left: auto;
}

/* Tabs */
.help-drawer-tabs[b-cuijpe6rh0] {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    background: #ffffff;
    flex-shrink: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.help-tab[b-cuijpe6rh0] {
    flex: 1;
    min-width: fit-content;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .help-tab[b-cuijpe6rh0] {
        font-size: 1rem;
    }
}

.help-tab:hover[b-cuijpe6rh0] {
    background: #f8f9fa;
    color: #495057;
}

.help-tab.active[b-cuijpe6rh0] {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background: #e7f1ff;
}

.help-tab:focus[b-cuijpe6rh0] {
    outline: 2px solid #0d6efd;
    outline-offset: -2px;
}

/* Content */
.help-drawer-content[b-cuijpe6rh0] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .help-drawer-content[b-cuijpe6rh0] {
        padding: 1.5rem;
    }
}

/* Adjust help-content-container when inside drawer */
.help-drawer-content .help-content-container[b-cuijpe6rh0] {
    background: transparent;
}

.help-drawer-content .help-article[b-cuijpe6rh0] {
    padding: 0;
    box-shadow: none;
}

/* Search Tab */
.help-search-tab[b-cuijpe6rh0] {
    animation: slideInUp-b-cuijpe6rh0 0.3s ease;
}

@keyframes slideInUp-b-cuijpe6rh0 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Results */
.help-search-results[b-cuijpe6rh0] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-search-result[b-cuijpe6rh0] {
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-search-result:hover[b-cuijpe6rh0] {
    background: #e7f1ff;
    border-color: #0d6efd;
    transform: translateX(4px);
}

.help-search-result:focus[b-cuijpe6rh0] {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.help-search-result h5[b-cuijpe6rh0] {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

/* Loading States */
.help-drawer-content .spinner-border[b-cuijpe6rh0] {
    width: 2rem;
    height: 2rem;
}

/* Scrollbar Styling (for desktop) */
@media (min-width: 1024px) {
    .help-drawer-content[b-cuijpe6rh0]::-webkit-scrollbar {
        width: 8px;
    }

    .help-drawer-content[b-cuijpe6rh0]::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .help-drawer-content[b-cuijpe6rh0]::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    .help-drawer-content[b-cuijpe6rh0]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .help-drawer[b-cuijpe6rh0],
    .help-drawer-overlay[b-cuijpe6rh0],
    .help-tab[b-cuijpe6rh0],
    .help-search-result[b-cuijpe6rh0] {
        transition: none;
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .help-drawer[b-cuijpe6rh0] {
        border-left: 3px solid #000000;
    }
    
    .help-tab.active[b-cuijpe6rh0] {
        border-bottom-width: 3px;
    }
}

/* Print Styles */
@media print {
    .help-drawer-overlay[b-cuijpe6rh0],
    .help-drawer[b-cuijpe6rh0] {
        display: none;
    }
}
/* _content/FrontEnd/Pages/Finance/Memoriaalboek.razor.rz.scp.css */
.form-label .text-danger[b-0q8vwhge2j],
.form-label span.text-danger[b-0q8vwhge2j] {
    display: inline !important;
    margin-left: 0.25rem;
    line-height: inherit;
    vertical-align: baseline;
}
/* _content/FrontEnd/Pages/Functionaliteiten.razor.rz.scp.css */
.functionaliteiten-page[b-trdny1422b] {
    --functionaliteiten-primary: #0d3c78;
    --functionaliteiten-primary-soft: #0d6efd;
    --functionaliteiten-accent: #2596be;
    width: min(1200px, calc(100% - 2rem));
    margin: 1rem auto 2.5rem;
    display: grid;
    gap: 1rem;
}

.functionaliteiten-hero[b-trdny1422b],
.functionaliteiten-nav[b-trdny1422b],
.functionaliteiten-section[b-trdny1422b],
.functionaliteiten-cta[b-trdny1422b] {
    border-radius: 22px;
    padding: 1.25rem;
}

.functionaliteiten-hero[b-trdny1422b] {
    color: #f8fbff;
    background:
        radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.14), transparent 36%),
        linear-gradient(135deg, var(--functionaliteiten-primary) 0%, var(--functionaliteiten-primary-soft) 62%, #73b8f5 100%);
    display: grid;
    gap: 1rem;
}

.functionaliteiten-hero-copy[b-trdny1422b] {
    display: grid;
    gap: 0.15rem;
}

.functionaliteiten-hero-visual[b-trdny1422b] {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.functionaliteiten-hero-visual img[b-trdny1422b] {
    display: block;
    width: 100%;
    height: auto;
}

.functionaliteiten-eyebrow[b-trdny1422b] {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.functionaliteiten-hero h1[b-trdny1422b],
.functionaliteiten-hero p[b-trdny1422b],
.functionaliteiten-section h2[b-trdny1422b],
.functionaliteiten-section p[b-trdny1422b],
.functionaliteiten-section ul[b-trdny1422b],
.functionaliteiten-cta h2[b-trdny1422b] {
    margin: 0;
}

.functionaliteiten-hero h1[b-trdny1422b] {
    margin-top: 0.8rem;
    font-size: clamp(1.9rem, 4.5vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.functionaliteiten-hero p[b-trdny1422b] {
    margin-top: 0.9rem;
    max-width: 72ch;
    color: rgba(248, 251, 255, 0.92);
    line-height: 1.65;
}

.functionaliteiten-nav[b-trdny1422b] {
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.functionaliteiten-nav button[b-trdny1422b] {
    appearance: none;
    background: #fff;
    cursor: pointer;
    color: var(--functionaliteiten-primary);
    border: 1px solid rgba(13, 60, 120, 0.2);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 600;
    min-height: 44px;
}

.functionaliteiten-nav button:hover[b-trdny1422b] {
    background: rgba(37, 150, 190, 0.1);
}

.functionaliteiten-nav button:focus-visible[b-trdny1422b] {
    outline: 3px solid rgba(13, 110, 253, 0.35);
    outline-offset: 2px;
}

.functionaliteiten-section[b-trdny1422b] {
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(15, 23, 42, 0.06);
    scroll-margin-top: 88px;
    display: grid;
    gap: 0.8rem;
}

.section-header[b-trdny1422b] {
    display: grid;
    gap: 0.3rem;
}

.section-eyebrow[b-trdny1422b] {
    display: inline-flex;
    width: fit-content;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(37, 150, 190, 0.1);
    color: var(--functionaliteiten-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.functionaliteiten-section h2[b-trdny1422b] {
    color: var(--functionaliteiten-primary);
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.functionaliteiten-section p[b-trdny1422b],
.functionaliteiten-section li[b-trdny1422b] {
    color: #334155;
    line-height: 1.65;
}

.functionaliteiten-section ul[b-trdny1422b] {
    padding-left: 1.15rem;
}

.functionaliteiten-cta[b-trdny1422b] {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 64%, #edf8fb 100%);
    display: grid;
    gap: 1rem;
}

.functionaliteiten-cta p[b-trdny1422b] {
    margin: 0;
    max-width: 75ch;
    color: #334155;
    line-height: 1.65;
}

.functionaliteiten-cta h2[b-trdny1422b] {
    color: var(--functionaliteiten-primary);
    font-size: clamp(1.25rem, 3vw, 1.9rem);
    line-height: 1.2;
}

.functionaliteiten-cta .btn[b-trdny1422b] {
    justify-self: start;
    min-height: 44px;
}

@media (min-width: 768px) {
    .functionaliteiten-page[b-trdny1422b] {
        width: min(1200px, calc(100% - 3rem));
        gap: 1.25rem;
    }

    .functionaliteiten-hero[b-trdny1422b],
    .functionaliteiten-nav[b-trdny1422b],
    .functionaliteiten-section[b-trdny1422b],
    .functionaliteiten-cta[b-trdny1422b] {
        padding: 1.7rem;
    }

    .functionaliteiten-hero[b-trdny1422b] {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
        align-items: center;
    }
}
/* _content/FrontEnd/Pages/HRM/Attendance/AttendanceOverview.razor.rz.scp.css */
.avatar-circle[b-xq9fkvfnvz] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}
/* _content/FrontEnd/Pages/Landing.razor.rz.scp.css */
.landing-page[b-r4c91c980i] {
    --landing-primary: #0a2f6f;
    --landing-primary-soft: #1e5da0;
    --landing-accent: #0ea5a0;
    --landing-accent-soft: #20c7b7;
    --landing-bg: linear-gradient(180deg, #f0f6ff 0%, #f7fbff 48%, #eef8f7 100%);
    padding: 1rem 0 3rem;
    background: var(--landing-bg);
}

.landing-hero[b-r4c91c980i],
.landing-section[b-r4c91c980i],
.landing-cta[b-r4c91c980i] {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto 1.25rem;
}

.landing-hero[b-r4c91c980i] {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 28px;
    color: #f8fbff;
    background:
        radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.14), transparent 34%),
        radial-gradient(circle at 12% 90%, rgba(111, 194, 255, 0.22), transparent 38%),
        linear-gradient(128deg, #0a2f6f 0%, #1e5fae 52%, #6fbaff 100%);
    box-shadow: 0 18px 50px rgba(7, 45, 99, 0.22);
}

.landing-hero[b-r4c91c980i]::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 35%),
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.14), transparent 25%);
    pointer-events: none;
}

.hero-brand-row[b-r4c91c980i],
.hero-grid[b-r4c91c980i],
.service-grid[b-r4c91c980i] {
    position: relative;
    z-index: 1;
}

.hero-brand-row[b-r4c91c980i] {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-brand-copy[b-r4c91c980i] {
    display: grid;
    gap: 0.55rem;
    max-width: none;
    width: 100%;
    align-self: stretch;
}

.hero-kicker[b-r4c91c980i],
.section-eyebrow[b-r4c91c980i] {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e8f4ff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-kicker[b-r4c91c980i] {
    width: fit-content;
}

.hero-title[b-r4c91c980i] {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.35rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
    text-wrap: balance;
    max-width: none;
    width: 100%;
}

.hero-grid[b-r4c91c980i] {
    display: grid;
    gap: 1.25rem;
}

.hero-copy[b-r4c91c980i] {
    display: grid;
    gap: 1rem;
}

.hero-subtitle[b-r4c91c980i],
.section-body[b-r4c91c980i],
.cta-body[b-r4c91c980i] {
    margin: 0;
    color: rgba(248, 251, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-actions[b-r4c91c980i] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-button[b-r4c91c980i],
.cta-button[b-r4c91c980i] {
    min-height: 44px;
    border-radius: 999px;
    padding-inline: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.hero-points[b-r4c91c980i] {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(248, 251, 255, 0.88);
    display: grid;
    gap: 0.45rem;
}

.hero-aside[b-r4c91c980i] {
    display: grid;
    gap: 0.85rem;
}

.hero-stat[b-r4c91c980i],
.info-card[b-r4c91c980i],
.quote-card[b-r4c91c980i],
.service-highlight[b-r4c91c980i],
.landing-cta[b-r4c91c980i] {
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hero-stat[b-r4c91c980i] {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(6px);
}

.hero-stat-label[b-r4c91c980i] {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.78);
}

.hero-stat strong[b-r4c91c980i] {
    font-size: 1rem;
    line-height: 1.45;
}

.landing-section[b-r4c91c980i],
.landing-cta[b-r4c91c980i] {
    border-radius: 24px;
    padding: 1.5rem;
}

.landing-section[b-r4c91c980i] {
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.section-header[b-r4c91c980i] {
    margin-bottom: 1rem;
    display: grid;
    gap: 0.6rem;
}

.section-title[b-r4c91c980i] {
    margin: 0;
    color: var(--landing-primary);
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title-link[b-r4c91c980i] {
    color: inherit;
    text-decoration: none;
}

.section-title-link:hover[b-r4c91c980i] {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.section-body[b-r4c91c980i] {
    color: #334155;
}

.card-grid[b-r4c91c980i] {
    display: grid;
    gap: 1rem;
}

.features-section[b-r4c91c980i] {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 160, 0.08), transparent 28%),
        radial-gradient(circle at 12% 18%, rgba(30, 93, 160, 0.06), transparent 24%),
        #fff;
}

.features-section[b-r4c91c980i]::after {
    content: '';
    position: absolute;
    inset: auto 1.5rem 0.9rem 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 160, 0.25), transparent);
    pointer-events: none;
}

.features-grid[b-r4c91c980i] {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0.1rem 0.6rem;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.25rem;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 93, 160, 0.45) transparent;
}

.features-grid[b-r4c91c980i]::-webkit-scrollbar {
    height: 10px;
}

.features-grid[b-r4c91c980i]::-webkit-scrollbar-track {
    background: transparent;
}

.features-grid[b-r4c91c980i]::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(30, 93, 160, 0.35), rgba(14, 165, 160, 0.45));
    border-radius: 999px;
}

.info-card[b-r4c91c980i],
.quote-card[b-r4c91c980i] {
    padding: 1.25rem;
    border-radius: 20px;
}

.info-card h3[b-r4c91c980i],
.quote-card p[b-r4c91c980i],
.quote-card footer[b-r4c91c980i] {
    margin: 0;
}

.info-card h3[b-r4c91c980i] {
    color: var(--landing-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card p[b-r4c91c980i],
.service-body[b-r4c91c980i],
.quote-card footer[b-r4c91c980i],
.cta-body[b-r4c91c980i] {
    color: #475569;
}

.usp-card-link[b-r4c91c980i] {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usp-card-link:hover[b-r4c91c980i] {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.13);
}

.usp-card-link:focus-visible[b-r4c91c980i] {
    outline: 3px solid rgba(13, 110, 253, 0.35);
    outline-offset: 3px;
}

.feature-card-link[b-r4c91c980i] {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.55rem;
    text-decoration: none;
    min-height: 100%;
    flex: 0 0 clamp(260px, 28vw, 340px);
    scroll-snap-align: start;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    background:
        linear-gradient(180deg, rgba(14, 165, 160, 0.06), transparent 26%),
        rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(30, 93, 160, 0.08);
    border-top: 4px solid rgba(14, 165, 160, 0.55);
    overflow: hidden;
}

.feature-card-link:hover[b-r4c91c980i] {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14);
    border-color: rgba(30, 93, 160, 0.18);
}

.feature-card-link[b-r4c91c980i]::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--landing-primary) 0%, var(--landing-primary-soft) 55%, var(--landing-accent) 100%);
    opacity: 0.14;
}

.feature-card-link:focus-visible[b-r4c91c980i] {
    outline: 3px solid rgba(13, 110, 253, 0.35);
    outline-offset: 3px;
}

.feature-card-link h3[b-r4c91c980i] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.feature-card-link h3[b-r4c91c980i]::before {
    content: '';
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-accent) 100%);
    box-shadow: 0 0 0 0.35rem rgba(14, 165, 160, 0.1);
    flex: 0 0 auto;
}

.feature-card-link p[b-r4c91c980i] {
    margin-bottom: 0;
    line-height: 1.65;
}

.card-icon[b-r4c91c980i] {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: #fff;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-accent) 100%);
}

.card-icon i[b-r4c91c980i] {
    font-size: 1.1rem;
}

.service-grid[b-r4c91c980i] {
    display: grid;
    gap: 1rem;
}

.service-highlights[b-r4c91c980i] {
    display: grid;
    gap: 0.85rem;
}

.service-highlight[b-r4c91c980i] {
    border-radius: 18px;
    padding: 1rem 1.1rem;
    font-weight: 600;
    color: var(--landing-primary);
}

.quote-card[b-r4c91c980i] {
    border-left: 6px solid var(--landing-accent);
}

.quote-card p[b-r4c91c980i] {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #0f172a;
}

.quote-card footer[b-r4c91c980i] {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.landing-cta[b-r4c91c980i] {
    display: grid;
    gap: 1rem;
    align-items: center;
    background: linear-gradient(135deg, #eef7ff 0%, #ffffff 65%, #f1f8f7 100%);
}

.cta-title[b-r4c91c980i] {
    margin: 0.35rem 0 0.5rem;
    color: var(--landing-primary);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.15;
}

.cta-body[b-r4c91c980i] {
    margin: 0;
    max-width: 60ch;
}

.landing-cta .cta-button[b-r4c91c980i] {
    justify-self: start;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-soft) 100%);
    border: none;
    color: #fff;
}

.internal-landing-page[b-r4c91c980i] {
    padding-top: 1.5rem;
}

.internal-header .section-title[b-r4c91c980i] {
    max-width: none;
}

.internal-loading-state[b-r4c91c980i] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
    font-weight: 600;
}

.internal-content-meta[b-r4c91c980i] {
    margin: -0.25rem 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.internal-content-html[b-r4c91c980i] {
    color: #334155;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .hero-brand-row[b-r4c91c980i] {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 1rem;
    }

    .hero-brand-copy[b-r4c91c980i] {
        max-width: none;
    }

    .hero-title[b-r4c91c980i] {
        max-width: none;
    }
}

@media (min-width: 768px) {
    .landing-page[b-r4c91c980i] {
        padding-top: 1.5rem;
    }

    .landing-hero[b-r4c91c980i],
    .landing-section[b-r4c91c980i],
    .landing-cta[b-r4c91c980i] {
        width: min(1200px, calc(100% - 3rem));
    }

    .landing-hero[b-r4c91c980i],
    .landing-section[b-r4c91c980i],
    .landing-cta[b-r4c91c980i] {
        padding: 2rem;
    }

    .hero-grid[b-r4c91c980i] {
        grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
        align-items: start;
    }

    .card-grid[b-r4c91c980i] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .features-grid[b-r4c91c980i] {
        justify-content: flex-start;
    }

    .testimonials-grid[b-r4c91c980i] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid[b-r4c91c980i] {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
        align-items: center;
    }

    .landing-cta[b-r4c91c980i] {
        grid-template-columns: minmax(0, 1.2fr) auto;
    }
}

@media (min-width: 1024px) {
    .landing-hero[b-r4c91c980i],
    .landing-section[b-r4c91c980i],
    .landing-cta[b-r4c91c980i] {
        padding: 2.5rem;
    }
}

.pilot-section[b-r4c91c980i] {
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fdf7 50%, #eff6ff 100%);
    border: 2px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.pilot-section[b-r4c91c980i]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pilot-content[b-r4c91c980i] {
    position: relative;
    z-index: 1;
}

.pilot-benefits[b-r4c91c980i] {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.pilot-benefit[b-r4c91c980i] {
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    text-align: center;
}

.pilot-benefit i[b-r4c91c980i] {
    font-size: 1.8rem;
    color: #22c55e;
}

.pilot-benefit strong[b-r4c91c980i] {
    color: #15803d;
    font-size: 1.05rem;
}

.pilot-benefit p[b-r4c91c980i] {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.pilot-cta-text[b-r4c91c980i] {
    margin: 1.5rem 0 0;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
}

.pilot-action-row[b-r4c91c980i] {
    margin-top: 1.5rem;
}

.pilot-action-button[b-r4c91c980i] {
    min-height: 44px;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, #0d6efd 0%, #2596be 100%);
    border: none;
}

.pilot-form-wrapper[b-r4c91c980i] {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 110, 253, 0.2);
    background: rgba(255, 255, 255, 0.82);
}

.pilot-form-grid[b-r4c91c980i] {
    display: grid;
    gap: 0.9rem;
}

.pilot-form-group[b-r4c91c980i] {
    display: grid;
    gap: 0.35rem;
}

.pilot-form-group label[b-r4c91c980i] {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 0.95rem;
}

.pilot-form-group .form-control[b-r4c91c980i] {
    min-height: 44px;
    border-radius: 10px;
}

.pilot-form-group textarea.form-control[b-r4c91c980i] {
    min-height: 120px;
}

.pilot-form-actions[b-r4c91c980i] {
    margin-top: 0.25rem;
}

.pilot-form-actions .btn[b-r4c91c980i] {
    min-height: 44px;
    border-radius: 999px;
    font-weight: 700;
    padding-inline: 1.25rem;
}

.pilot-validation-list[b-r4c91c980i] {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
}

.pilot-honeypot[b-r4c91c980i] {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

@media (min-width: 768px) {
    .pilot-benefits[b-r4c91c980i] {
        grid-template-columns: repeat(3, 1fr);
    }

    .pilot-form-grid[b-r4c91c980i] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pilot-form-group-full[b-r4c91c980i] {
        grid-column: 1 / -1;
    }
}

/* Dark-mode overrides: override html.dark-mode section { background-color: #1a1a1a !important } */
html.dark-mode .landing-page[b-r4c91c980i] {
    --landing-primary: #93c5fd;
    --landing-primary-soft: #60a5fa;
    --landing-accent: #2dd4bf;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 42%, #0f172a 100%) !important;
}

html.dark-mode .landing-section[b-r4c91c980i] {
    background: #1e293b !important;
    color: #e2e8f0 !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

html.dark-mode .section-title[b-r4c91c980i] {
    color: var(--landing-primary) !important;
}

html.dark-mode .section-body[b-r4c91c980i] {
    color: #cbd5e1 !important;
}

html.dark-mode .info-card[b-r4c91c980i],
html.dark-mode .quote-card[b-r4c91c980i],
html.dark-mode .service-highlight[b-r4c91c980i] {
    background: #0f172a !important;
    color: #e2e8f0 !important;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

html.dark-mode .info-card h3[b-r4c91c980i] {
    color: var(--landing-primary) !important;
}

html.dark-mode .info-card p[b-r4c91c980i],
html.dark-mode .service-body[b-r4c91c980i],
html.dark-mode .quote-card footer[b-r4c91c980i] {
    color: #94a3b8 !important;
}

html.dark-mode .quote-card p[b-r4c91c980i] {
    color: #e2e8f0 !important;
}

html.dark-mode .service-highlight[b-r4c91c980i] {
    color: var(--landing-primary) !important;
}

html.dark-mode .landing-cta[b-r4c91c980i] {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 65%, #1e293b 100%) !important;
    color: #e2e8f0 !important;
}

html.dark-mode .cta-title[b-r4c91c980i] {
    color: var(--landing-primary) !important;
}

html.dark-mode .cta-body[b-r4c91c980i] {
    color: #cbd5e1 !important;
}

html.dark-mode .pilot-section[b-r4c91c980i] {
    background: linear-gradient(135deg, #1e2f1a 0%, #1f3a1f 50%, #1a2f3a 100%) !important;
    border-color: rgba(34, 197, 94, 0.3) !important;
}

html.dark-mode .pilot-benefit[b-r4c91c980i] {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: rgba(34, 197, 94, 0.25) !important;
}

html.dark-mode .pilot-benefit strong[b-r4c91c980i] {
    color: #4ade80 !important;
}

html.dark-mode .pilot-benefit p[b-r4c91c980i] {
    color: #94a3b8 !important;
}

html.dark-mode .pilot-cta-text[b-r4c91c980i] {
    color: #cbd5e1 !important;
}

html.dark-mode .pilot-form-wrapper[b-r4c91c980i] {
    background: rgba(15, 23, 42, 0.7) !important;
    border-color: rgba(37, 150, 190, 0.45) !important;
}

html.dark-mode .pilot-form-group label[b-r4c91c980i] {
    color: #93c5fd !important;
}

html.dark-mode .pilot-form-group .form-control[b-r4c91c980i] {
    background: #0f172a !important;
    color: #e2e8f0 !important;
    border-color: rgba(148, 163, 184, 0.45) !important;
}
/* _content/FrontEnd/Pages/Purchase/PurchaseXmlConcepts.razor.rz.scp.css */
.concept-row[b-kobgj890nf] {
  cursor: pointer;
}

.concept-mobile-card .btn[b-kobgj890nf] {
  min-height: 44px;
}

@media (max-width: 767.98px) {
  .concept-mobile-card .card-title[b-kobgj890nf] {
    max-width: 100%;
  }
}
/* _content/FrontEnd/Pages/Purchase/PurchaseXmlProcessor.razor.rz.scp.css */
.purchase-xml-processor-page[b-qs3to5y8dm] {
  overflow-x: hidden;
  overflow-x: clip;
}

.purchase-xml-processor-page .card[b-qs3to5y8dm] {
  min-width: 0;
}

.processor-header[b-qs3to5y8dm] {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.processor-header-actions[b-qs3to5y8dm] {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.processor-header-actions .btn[b-qs3to5y8dm] {
  min-height: 44px;
}

.purchase-xml-processor-page .row > [class*='col-'][b-qs3to5y8dm] {
  min-width: 0;
}

.processor-workspace-row > [class*='col-'][b-qs3to5y8dm] {
  min-width: 0;
}

.processor-status-grid[b-qs3to5y8dm] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.processor-status-item[b-qs3to5y8dm] {
  min-width: 0;
}

.processor-nav-actions[b-qs3to5y8dm] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.processor-nav-actions .btn[b-qs3to5y8dm] {
  min-height: 44px;
  white-space: normal;
  min-width: 0;
}

.processor-draft-list[b-qs3to5y8dm] {
  max-height: 280px;
  overflow-y: auto;
}

.processor-draft-list .list-group-item[b-qs3to5y8dm] {
  text-align: left;
}

.processor-file-header[b-qs3to5y8dm] {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.processor-xml-content[b-qs3to5y8dm] {
  max-height: min(50vh, 420px);
  overflow: auto;
  max-width: 100%;
  background-color: #f8f9fa;
}

.processor-xml-pre[b-qs3to5y8dm] {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.processor-kv-table[b-qs3to5y8dm] {
  margin-bottom: 0;
  table-layout: fixed;
  width: 100%;
}

.processor-kv-table td[b-qs3to5y8dm],
.processor-kv-table th[b-qs3to5y8dm] {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.processor-textlines-content[b-qs3to5y8dm] {
  max-height: min(35vh, 220px);
  overflow: auto;
  background-color: #f8f9fa;
}

@media (max-width: 1199.98px) {
  .processor-nav-actions[b-qs3to5y8dm] {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .processor-header-actions[b-qs3to5y8dm] {
    width: 100%;
    justify-content: flex-start;
  }

  .processor-header-actions .btn[b-qs3to5y8dm] {
    flex: 1 1 auto;
  }
}

@media (max-width: 767.98px) {
  .purchase-xml-processor-page[b-qs3to5y8dm] {
    margin-top: 1rem !important;
  }

  .processor-status-grid[b-qs3to5y8dm] {
    grid-template-columns: 1fr;
  }

  .processor-nav-actions[b-qs3to5y8dm] {
    grid-template-columns: 1fr;
  }

  .processor-nav-actions .btn[b-qs3to5y8dm] {
    width: 100%;
  }
}
/* _content/FrontEnd/Pages/Register.razor.rz.scp.css */
.register-page[b-egdbm6l7ey] {
    --erpathos-brand: #2596BE;
    --erpathos-primary: #0D6EFD;
    --erpathos-accent: #F28C28;
    --register-surface: #f3f8fe;
    --register-border: #d7e6f7;
    background:
        radial-gradient(circle at 10% 15%, rgba(37, 150, 190, 0.12) 0, rgba(37, 150, 190, 0) 45%),
        radial-gradient(circle at 90% 10%, rgba(13, 110, 253, 0.16) 0, rgba(13, 110, 253, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    min-height: calc(100vh - 4rem);
}

.register-shell[b-egdbm6l7ey] {
    margin: 0 auto;
    max-width: 980px;
}

.register-head[b-egdbm6l7ey] {
    margin-bottom: 1rem;
    text-align: center;
}

.register-kicker[b-egdbm6l7ey] {
    color: var(--erpathos-brand);
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.register-title[b-egdbm6l7ey] {
    color: #103b67;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 700;
    margin: 0.35rem 0;
}

.register-subtitle[b-egdbm6l7ey] {
    color: #426584;
    margin: 0 auto;
    max-width: 62ch;
}

.register-card[b-egdbm6l7ey] {
    border: 1px solid var(--register-border);
    border-radius: 1rem;
    box-shadow: 0 14px 28px rgba(9, 42, 75, 0.08);
    overflow: hidden;
}

.register-card-header[b-egdbm6l7ey] {
    background: linear-gradient(120deg, #2596BE 0%, #0D6EFD 100%);
    color: #fff;
    padding: 1rem 1.25rem;
}

.register-card-body[b-egdbm6l7ey] {
    background: var(--register-surface);
    padding: 1.1rem;
}

.register-alert[b-egdbm6l7ey] {
    border-radius: 0.75rem;
}

.register-section-title[b-egdbm6l7ey] {
    color: #134777;
    font-weight: 700;
}

.register-card-body :deep(.form-control)[b-egdbm6l7ey] {
    border-color: #bad6f2;
    min-height: 44px;
}

.register-card-body :deep(.form-control:focus)[b-egdbm6l7ey] {
    border-color: var(--erpathos-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.register-submit[b-egdbm6l7ey] {
    background-color: var(--erpathos-primary);
    border-color: var(--erpathos-primary);
    color: #ffffff;
    font-weight: 600;
    min-height: 44px;
}

.register-submit:hover[b-egdbm6l7ey],
.register-submit:focus[b-egdbm6l7ey] {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    color: #ffffff;
}

.register-submit:disabled[b-egdbm6l7ey] {
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.75;
}

.register-footer[b-egdbm6l7ey] {
    color: #345b7f;
}

.register-login-link[b-egdbm6l7ey] {
    color: var(--erpathos-accent);
    text-decoration: none;
}

.register-login-link:hover[b-egdbm6l7ey],
.register-login-link:focus[b-egdbm6l7ey] {
    color: #c96e0f;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .register-card-body[b-egdbm6l7ey] {
        padding: 1.5rem;
    }
}
/* _content/FrontEnd/Pages/Sales/Pricing/PriceCalculator.razor.rz.scp.css */
.price-calculator-page[b-vngmc03ihd] {
    padding-bottom: 2rem;
}

.price-calculator-hero[b-vngmc03ihd] {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 1rem;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.14), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    padding: 1.5rem;
}

.price-calculator-hero-copy[b-vngmc03ihd] {
    max-width: 52rem;
}

.price-calculator-hero-pill[b-vngmc03ihd] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.875rem;
}

.price-calculator-hero h1[b-vngmc03ihd] {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.6rem);
}

.price-calculator-hero-stats[b-vngmc03ihd] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.price-calculator-hero-stat[b-vngmc03ihd] {
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.price-calculator-hero-stat span[b-vngmc03ihd] {
    display: block;
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.price-calculator-details-card[b-vngmc03ihd] {
    border-radius: 1rem;
}

.price-calculator-details-list[b-vngmc03ihd],
.price-calculator-rule-list[b-vngmc03ihd] {
    margin: 0;
}

[b-vngmc03ihd] .pricing-input-card,
[b-vngmc03ihd] .pricing-result-card {
    border: 0;
    border-radius: 1rem;
}

[b-vngmc03ihd] .pricing-selected-article {
    border-style: dashed;
}

[b-vngmc03ihd] .pricing-result-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

[b-vngmc03ihd] .pricing-summary-tile {
    border: 1px solid rgba(25, 135, 84, 0.12);
    background: linear-gradient(180deg, rgba(25, 135, 84, 0.08), rgba(25, 135, 84, 0.02));
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
}

[b-vngmc03ihd] .pricing-summary-label {
    display: block;
    color: #6c757d;
    font-size: 0.78rem;
    margin-bottom: 0.25rem;
}

[b-vngmc03ihd] .pricing-breakdown-list .list-group-item {
    background: transparent;
}

@media (max-width: 767.98px) {
    .price-calculator-hero[b-vngmc03ihd] {
        padding: 1.2rem;
    }

    .price-calculator-hero-stats[b-vngmc03ihd] {
        grid-template-columns: 1fr;
    }

    [b-vngmc03ihd] .pricing-result-summary-grid {
        grid-template-columns: 1fr;
    }
}
/* _content/FrontEnd/Pages/Settings/Components/SalesMasterData.razor.rz.scp.css */
.modal .form-label[b-y7wbkm0j8f] {
    display: inline-block;
}

.modal .form-label .text-danger[b-y7wbkm0j8f],
.modal .form-label span.text-danger[b-y7wbkm0j8f] {
    display: inline !important;
    margin-left: 0.25rem;
    line-height: inherit;
    vertical-align: baseline;
}
/* _content/FrontEnd/Pages/Support/BulkActions.razor.rz.scp.css */
.bulk-actions-page[b-bpsp83fgla] {
    padding: 20px;
}

.operation-card[b-bpsp83fgla] {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.operation-card:hover[b-bpsp83fgla] {
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.operation-icon[b-bpsp83fgla] {
    margin-bottom: 15px;
}

.operation-card h5[b-bpsp83fgla] {
    font-weight: 600;
    margin-bottom: 10px;
}

.operation-card p[b-bpsp83fgla] {
    margin-bottom: 0;
    font-size: 0.9rem;
}
/* _content/FrontEnd/Pages/Support/SupportDashboard.razor.rz.scp.css */
/* _content/FrontEnd/Pages/WaaromERPAthos.razor.rz.scp.css */
.waarom-page[b-9avrg3f7u2] {
    --waarom-primary: #0d3c78;
    --waarom-primary-soft: #0d6efd;
    --waarom-accent: #2596be;
    width: min(1200px, calc(100% - 2rem));
    margin: 1rem auto 2.5rem;
    display: grid;
    gap: 1rem;
}

.waarom-hero[b-9avrg3f7u2],
.waarom-nav[b-9avrg3f7u2],
.waarom-section[b-9avrg3f7u2],
.waarom-cta[b-9avrg3f7u2] {
    border-radius: 22px;
    padding: 1.25rem;
}

.waarom-hero[b-9avrg3f7u2] {
    color: #f8fbff;
    background:
        radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.14), transparent 36%),
        linear-gradient(135deg, var(--waarom-primary) 0%, var(--waarom-primary-soft) 62%, #73b8f5 100%);
}

.waarom-eyebrow[b-9avrg3f7u2] {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.waarom-hero h1[b-9avrg3f7u2],
.waarom-hero p[b-9avrg3f7u2],
.waarom-section h2[b-9avrg3f7u2],
.waarom-section p[b-9avrg3f7u2],
.waarom-section ul[b-9avrg3f7u2],
.waarom-cta h2[b-9avrg3f7u2] {
    margin: 0;
}

.waarom-hero h1[b-9avrg3f7u2] {
    margin-top: 0.8rem;
    font-size: clamp(1.9rem, 4.5vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.waarom-hero p[b-9avrg3f7u2] {
    margin-top: 0.9rem;
    max-width: 72ch;
    color: rgba(248, 251, 255, 0.92);
    line-height: 1.65;
}

.waarom-nav[b-9avrg3f7u2] {
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.waarom-nav button[b-9avrg3f7u2] {
    appearance: none;
    background: #fff;
    cursor: pointer;
    color: var(--waarom-primary);
    border: 1px solid rgba(13, 60, 120, 0.2);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-weight: 600;
}

.waarom-nav button:hover[b-9avrg3f7u2] {
    background: rgba(37, 150, 190, 0.1);
}

.waarom-nav button:focus-visible[b-9avrg3f7u2] {
    outline: 3px solid rgba(13, 110, 253, 0.35);
    outline-offset: 2px;
}

.waarom-section[b-9avrg3f7u2] {
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(15, 23, 42, 0.06);
    scroll-margin-top: 88px;
    display: grid;
    gap: 0.8rem;
}

.waarom-section h2[b-9avrg3f7u2] {
    color: var(--waarom-primary);
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.waarom-section p[b-9avrg3f7u2],
.waarom-section li[b-9avrg3f7u2] {
    color: #334155;
    line-height: 1.65;
}

.waarom-section ul[b-9avrg3f7u2] {
    padding-left: 1.15rem;
}

.waarom-cta[b-9avrg3f7u2] {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 64%, #edf8fb 100%);
    display: grid;
    gap: 1rem;
}

.waarom-cta h2[b-9avrg3f7u2] {
    color: var(--waarom-primary);
    font-size: clamp(1.25rem, 3vw, 1.9rem);
    line-height: 1.2;
}

.waarom-cta .btn[b-9avrg3f7u2] {
    justify-self: start;
    min-height: 44px;
}

@media (min-width: 768px) {
    .waarom-page[b-9avrg3f7u2] {
        width: min(1200px, calc(100% - 3rem));
        gap: 1.25rem;
    }

    .waarom-hero[b-9avrg3f7u2],
    .waarom-nav[b-9avrg3f7u2],
    .waarom-section[b-9avrg3f7u2],
    .waarom-cta[b-9avrg3f7u2] {
        padding: 1.7rem;
    }
}
/* _content/FrontEnd/Shared/MainLayout.razor.rz.scp.css */
.page[b-4arn68henf] {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow-x: hidden;
}

main[b-4arn68henf] {
    flex: 1;
    max-width: 100vw;
}

.sidebar[b-4arn68henf] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-4arn68henf] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 var(--container-padding-mobile);
}

    .top-row[b-4arn68henf]  a, .top-row .btn-link[b-4arn68henf] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-4arn68henf] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Mobile-first: default mobile layout */
@media (max-width: 640px) {
    .top-row:not(.auth)[b-4arn68henf] {
        display: none;
    }

    .top-row.auth[b-4arn68henf] {
        justify-content: space-between;
    }

    .top-row a[b-4arn68henf], .top-row .btn-link[b-4arn68henf] {
        margin-left: 0;
    }
    
    /* Ensure content has proper mobile padding */
    .content[b-4arn68henf], main > article[b-4arn68henf] {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }
}

/* Tablet and up */
@media (min-width: 641px) {
    .page[b-4arn68henf] {
        flex-direction: row;
    }

    .sidebar[b-4arn68henf] {
        width: 250px;
        height: 100vh;
        position: fixed !important;
        top: 0;
        left: 0;
        z-index: 2000 !important;
        display: block !important;
        background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%) !important;
        overflow-y: auto;
    }

    .top-row[b-4arn68henf] {
        position: sticky;
        top: 0;
        z-index: 1;
        padding: 0 var(--container-padding-tablet);
    }

    .top-row[b-4arn68henf], article[b-4arn68henf] {
        padding-left: var(--container-padding-tablet) !important;
        padding-right: var(--container-padding-tablet) !important;
        margin-left: 0px !important;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .top-row[b-4arn68henf] {
        padding: 0 var(--container-padding-desktop);
    }
    
    .top-row[b-4arn68henf], article[b-4arn68henf] {
        padding-left: var(--container-padding-desktop) !important;
        padding-right: var(--container-padding-desktop) !important;
    }
}
