/* _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/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/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/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;
    }
}
