/* _content/SharedComponents/Gantt/GanttControl.razor.rz.scp.css */
.maintable[b-ntrjt0mb3f] {
    width: 100%;
    height: 100%;
}
.gna-scrollbar[b-ntrjt0mb3f] {
    height: 100%;
    overflow-y: auto;
    background-color: var(--kfx-gantt-bg, var(--kfx-white));
}

.gna-scrollbar[b-ntrjt0mb3f]::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

.gna-scrollbar[b-ntrjt0mb3f]::-webkit-scrollbar-corner,
[b-ntrjt0mb3f]::-webkit-scrollbar-track {
    background-color: var(--kfx-gantt-bg, var(--kfx-white));
}

:root[data-theme='dark'] .gna-scrollbar[b-ntrjt0mb3f],
:root[data-theme='dark'] .gna-scrollbar[b-ntrjt0mb3f]::-webkit-scrollbar-corner,
:root[data-theme='dark'] [b-ntrjt0mb3f]::-webkit-scrollbar-track {
    background-color: var(--kfx-gantt-bg);
}

.gna-scrollbar[b-ntrjt0mb3f]::-webkit-scrollbar-thumb {
    background-color: var(--kfx-black);
    background-clip: padding-box;
    border: 2px solid transparent;
}
.gna-scrollbar[b-ntrjt0mb3f]::-webkit-scrollbar-thumb:hover {
        background-color: var(--kfx-primary-300);
}

.gna-scrollbar[b-ntrjt0mb3f]::-webkit-scrollbar-thumb:active {
        background-color: var(--kfx-primary-400);
}
/* _content/SharedComponents/Gantt/GanttControlOptions.razor.rz.scp.css */
/* FORCE UPDATE - Timeline Card Border Radius Fix v2.0 */
/* Main container card - full size with no margins */
.card.h-100.border-0[b-55zr0uok22] {
    margin: 0 !important;
    border-radius: 0 !important;
    height: 100% !important;
    border: none !important;
    box-shadow: none !important;
}

/* Main container card header and body should have no border radius */
.card.h-100.border-0 > .card-header[b-55zr0uok22] {
    border-radius: 0 !important;
}

.card.h-100.border-0 > .card-body[b-55zr0uok22] {
    border-radius: 0 !important;
}

.chart-control-options[b-55zr0uok22] {
    --dialog-bg: #ffffff;
    --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    --header-bg: #f8f9fa;
    --border-radius: 8px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
}

.card[b-55zr0uok22] {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.2s ease-in-out;
}

/* Inner cards specifically (not the main container) */
.card-body .card[b-55zr0uok22] {
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.2s ease-in-out;
    margin-bottom: 0;
}

/* Force rounded corners on all inner cards - high specificity */
.card.h-100.border-0 .card-body .card[b-55zr0uok22] {
    border-radius: 8px !important;
}

/* Force rounded corners on inner card headers */
.card.h-100.border-0 .card-body .card .card-header[b-55zr0uok22] {
    border-radius: 8px 8px 0 0 !important;
}

/* Force rounded corners on inner card bodies */
.card.h-100.border-0 .card-body .card .card-body[b-55zr0uok22] {
    border-radius: 0 0 8px 8px !important;
}

.card:hover[b-55zr0uok22],
.card-body .card:hover[b-55zr0uok22] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Inner card headers (grey) - excludes main title which has bg-primary */
.card-body .card-header[b-55zr0uok22] {
    border-bottom: 1px solid #dee2e6;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
    padding: 0.5rem 1rem;
    font-weight: 600;
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

/* Main title stays blue */
.card-header.bg-primary[b-55zr0uok22] {
    border-bottom: 1px solid #dee2e6;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

.help-icon[b-55zr0uok22] {
    cursor: help;
    font-size: 0.8rem;
    color: #6c757d;
    transition: color 0.2s ease-in-out;
}

.help-icon:hover[b-55zr0uok22] {
    color: #007bff;
}

.card-body[b-55zr0uok22] {
    padding: 0.75rem 1rem;
}

.form-check[b-55zr0uok22] {
    margin-bottom: var(--spacing-sm);
}

.form-check-label[b-55zr0uok22] {
    font-weight: 500;
    color: #495057;
}

.btn[b-55zr0uok22] {
    border-radius: 8px !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease-in-out;
}

/* Force button border radius */
button.btn[b-55zr0uok22] {
    border-radius: 8px !important;
}

.btn-primary[b-55zr0uok22],
.btn-outline-secondary[b-55zr0uok22] {
    border-radius: 8px !important;
}

.btn-primary[b-55zr0uok22] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
}

.btn-primary:hover[b-55zr0uok22] {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    color: white;
}

.btn-outline-secondary[b-55zr0uok22] {
    color: #6c757d;
    border-color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:hover[b-55zr0uok22] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.form-control[b-55zr0uok22] {
    border-radius: var(--border-radius);
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus[b-55zr0uok22] {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label[b-55zr0uok22] {
    font-weight: 500;
    color: #495057;
    margin-bottom: var(--spacing-sm);
}

/* DualList specific styling */
.card-body .form-control[multiple][b-55zr0uok22] {
    border-radius: var(--border-radius);
    min-height: 150px;
}

.card-body .d-flex.justify-content-around[b-55zr0uok22] {
    gap: 1rem;
}

.card-body .d-flex.justify-content-around > div:first-child[b-55zr0uok22],
.card-body .d-flex.justify-content-around > div:nth-child(3)[b-55zr0uok22] {
    min-width: 200px;
    flex: 1;
    max-width: 300px;
}

.card-body .d-flex.justify-content-around select[b-55zr0uok22] {
    width: 100%;
    min-width: 200px;
    max-width: 300px;
    height: 150px;
}

.buttonlimit[b-55zr0uok22] {
    border-radius: var(--border-radius);
    margin: 0.25rem;
    transition: all 0.2s ease-in-out;
}

.buttonlimit:hover[b-55zr0uok22] {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .card-body[b-55zr0uok22] {
        padding: var(--spacing-md);
    }
    
    .btn[b-55zr0uok22] {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
}

/* Animation for card loading */
.card[b-55zr0uok22] {
    animation: fadeInUp-b-55zr0uok22 0.3s ease-out;
}

@keyframes fadeInUp-b-55zr0uok22 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/SharedComponents/Gantt/GanttDragControl.razor.rz.scp.css */
.dragdiv[b-k1otkb7nr0]
{
    width:100%;
    z-index:10000;
}
/* _content/SharedComponents/Gantt/GanttRowBox.razor.rz.scp.css */
.gantt-row[b-cnvipug266] {
    background-color: var(--kfx-gantt-even-row, var(--kfx-white));
    margin: 0px;
    height: var(--kfx-gantt-row-height);
}
.gantt-row-nonerow[b-cnvipug266] {
    background-color: var(--kfx-gantt-even-row);
    color: var(--kfx-text-primary);
    margin: 0px;
    height: var(--kfx-gantt-row-height);
}
.gantt-row:nth-of-type(odd)[b-cnvipug266] {
    background-color: var(--kfx-gantt-odd-row, var(--bs-gray-400));
}

:root[data-theme='dark'] .gantt-row[b-cnvipug266] {
    background-color: var(--kfx-gantt-even-row);
    color: var(--kfx-text-primary);
}

:root[data-theme='dark'] .gantt-row:nth-of-type(odd)[b-cnvipug266] {
    background-color: var(--kfx-gantt-odd-row);
}

.gantt-resourcerow[b-cnvipug266] {
    border-right-width: 1px;
    border-right-color: grey;
    border-right-style: solid;
    -ms-flex: 0 0 var(--kfx-gantt-first-column-width);
    flex: 0 0 var(--kfx-gantt-first-column-width);
    border-radius: 3px 0px 0px 3px;
    font-size: 10px;
    padding-left: 2px;
    padding-right: 0px;
    width: var(--kfx-gantt-first-column-width);
    color: var(--kfx-secondary);
}

:root[data-theme='dark'] .gantt-resourcerow[b-cnvipug266] {
    border-right-color: var(--kfx-border-color);
    color: var(--kfx-text-primary);
}

.selectedrow[b-cnvipug266] {
    background-color: var(--kfx-primary-400);
    color: #ffffff;
    font-weight: bold;
    border-color: rgba(var(--kfx-primary-600-rgb), 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(var(--kfx-primary-600-rgb), 0.6);
    outline: 0 none;
}
.selectedrow-a[b-cnvipug266] {
    color: #ffffff;
}

.gantt-resourcedetailrow[b-cnvipug266] {
    padding: 0px;
}

.selectedrowdetails[b-cnvipug266] {
    border-color: rgba(var(--kfx-primary-600-rgb), 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(var(--kfx-primary-600-rgb), 0.6);
    outline: 0 none;
}
.alerticon[b-cnvipug266]
{
    font-size:2em;
    color:var(--kfx-red);
}
.gantt-property-text[b-cnvipug266] {
    text-align: left !important;
    padding-left: 7px;
    font-size: 1.2em;
    font-weight:600;
}
.gantt-property-text-display[b-cnvipug266] {
    text-align: left !important;
    padding-left: 2px;
    margin-right:5px;
    font-size: 0.8em;
    font-weight: 400;
    background-color: var(--kfx-secondary-A100);
    color: var(--kfx-primary-900);
    border-radius: 2px;
}

/* _content/SharedComponents/Gantt/GanttRowChartDetailsBox.razor.rz.scp.css */
/* _content/SharedComponents/Gantt/GanttRowChartStat.razor.rz.scp.css */
.gantt-row[b-ij5u42wupo] {
    background-color: white;
    margin: 0px;
    height: var(--kfx-gantt-row-height);
}

    .gantt-row:nth-of-type(odd)[b-ij5u42wupo] {
        background-color: var(--bs-gray-400);
    }

.gantt-resourcerow[b-ij5u42wupo] {
    border-right-width: 1px;
    border-right-color: grey;
    border-right-style: solid;
    -ms-flex: 0 0 var(--kfx-gantt-first-column-width);
    flex: 0 0 var(--kfx-gantt-first-column-width);
    border-radius: 3px 0px 0px 3px;
    font-size: 10px;
    padding-left: 2px;
    padding-right: 0px;
    width: var(--kfx-gantt-first-column-width);
    
}

.selectedrow[b-ij5u42wupo] {
    background-color: #7a1294;
    color: #c3b2d0;
    font-weight: bold;
    border-color: rgba(122, 018, 148, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(122, 18, 148, 0.6);
    outline: 0 none;
}

.gantt-resourcedetailrow[b-ij5u42wupo] {
    padding: 0px;
}

.selectedrowdetails[b-ij5u42wupo] {
    border-color: rgba(122, 18, 148, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(122, 18, 148, 0.6);
    outline: 0 none;
}
.statbtn[b-ij5u42wupo] {
    display: inline-block;
    font-size: 12px;
    background-color: var(--bs-primary);
    color:var(--bs-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

    .statbtn:focus[b-ij5u42wupo] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
    }

    .statbtn:active[b-ij5u42wupo] {
        background-color: var(--bs-btn-active-bg);
    }
    .lefttext[b-ij5u42wupo]
    {
        font-size:0.7em;
        fill:white;
    }
/* _content/SharedComponents/Gantt/GanttRowDetailsBox.razor.rz.scp.css */
.normalact[b-inqf0avn5h] {
    fill: var(--kfx-secondary-200);
    animation: col 3s linear;
    stroke: var(--kfx-black);
}

.selectedact[b-inqf0avn5h] {
    fill: var(--kfx-accent);
    stroke: var(--kfx-black);
}

.selectedacttext[b-inqf0avn5h] {
    fill: var(--kfx-black);
}

.normalact:hover[b-inqf0avn5h] {
    -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}

.selectedact:hover[b-inqf0avn5h] {
    -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}

.normalacttext[b-inqf0avn5h] {
    user-select: none;
    fill: black;
    font-size: 12px;
}

.smallacttext[b-inqf0avn5h] {
    writing-mode: vertical-lr;
}

.current-time[b-inqf0avn5h] {
    stroke: var(--kfx-accent);
    stroke-width: 2;
}
/* _content/SharedComponents/Gantt/GanttRowGroupBox.razor.rz.scp.css */
.gantt-row[b-bki5igngdh] {
    height: var(--kfx-gantt-row-height);
    border-bottom-width: 1px;
    border-bottom-color: var(--bs-gray-800);
    border-bottom-style: solid;
    background-color: var(--kfx-primary);
    color: var(--bs-gray-400);
}
.expimpbutton[b-bki5igngdh] {
    padding-top: 0px;
    background-color: var(--kfx-primary);
}
/* _content/SharedComponents/Gantt/GanttRowToolTip.razor.rz.scp.css */
.tooltip-wrapper[b-tv1c5kkpzj] {
    position: relative;
    display: inline-block;
    
}

.tooltip-content[b-tv1c5kkpzj] {
    visibility: hidden;
    position: absolute;
    
}

.tooltip-wrapper:hover .tooltip-content[b-tv1c5kkpzj] {
    visibility: visible;
    
}
/* _content/SharedComponents/Gantt/GanttToolbar.razor.rz.scp.css */
.gantt-toolbar[b-pi37bc7wri] {
    background-color: var(--kfx-primary);
}
.gna-toolbar[b-pi37bc7wri] {
    background-color: #1c488e;
    border-radius: 0px;
    border-width: 0px;
}

.settings-toolbar-button[b-pi37bc7wri] {
    max-height: 24px;
    max-width: 24px;
    padding: 4px;
}

.settings-dialog[b-pi37bc7wri] {
    background-color: transparent;
    position: fixed;
    top: 100px;
    left: 0;
    padding: 1em;
}
/* _content/SharedComponents/Gantt/GanttTooltip.razor.rz.scp.css */
.tooltip-wrapper[b-i6nm277xye] {
    position: relative;
    display: inline-block;
}

span[b-i6nm277xye] {
    visibility: hidden;
    position: absolute;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

    span[b-i6nm277xye]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip-wrapper:hover span[b-i6nm277xye] {
    visibility: visible;
}
/* _content/SharedComponents/Gantt/InteractiveDateHeader.razor.rz.scp.css */
/* Scoped to this component only using wrapper class */
.interactive-date-header-wrapper .btn.cursor-pointer[b-1n93vk21mh] {
    transition: opacity 0.2s ease;
    border: 1px solid rgba(var(--bs-border-color-rgb), 0.5);
    position: relative;
}

.interactive-date-header-wrapper .btn.cursor-pointer:hover[b-1n93vk21mh] {
    opacity: 0.85;
    border-color: rgba(var(--bs-border-color-rgb), 0.8);
}

.interactive-date-header-wrapper .btn.cursor-pointer.loading[b-1n93vk21mh] {
    cursor: wait !important;
}

/* Loading overlay for date header - similar to offers switch */
.date-header-loading-overlay[b-1n93vk21mh] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-primary, #0d6efd);
    opacity: 0.7;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 100;
}

/* Spinning ring in the overlay */
.date-header-spinner[b-1n93vk21mh] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-right-color: white;
    border-radius: 50%;
    animation: date-header-spin-b-1n93vk21mh 0.8s linear infinite;
}

@keyframes date-header-spin-b-1n93vk21mh {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.date-header-dropdown[b-1n93vk21mh] {
    position: fixed;
  
    margin-top: 0.25rem;
    min-width: 560px;
    max-width: 750px;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 10500;
    border: 1px solid var(--bs-border-color);
    background-color: var(--kfx-dialog-bg);
}

.date-header-backdrop[b-1n93vk21mh] {
    position: fixed;
    inset: 0;
    z-index: 10499;
    background: transparent;
}

/* Fixed header section - stays at top */
.dropdown-header-fixed[b-1n93vk21mh] {
    flex-shrink: 0;
    background-color: var(--kfx-dialog-bg);
    border-bottom: 1px solid var(--bs-border-color);
}

/* Scrollable body section - only periods scroll */
.dropdown-body-scrollable[b-1n93vk21mh] {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
    background-color: var(--kfx-dialog-bg);
}

.date-header-dropdown .nav-tabs[b-1n93vk21mh] {
    border-bottom: 1px solid var(--bs-border-color);
}

.date-header-dropdown .btn-close-white[b-1n93vk21mh] {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.date-header-dropdown .btn-close-white:hover[b-1n93vk21mh] {
    opacity: 1;
}

.date-header-dropdown .nav-link[b-1n93vk21mh] {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.date-header-dropdown .nav-link.active[b-1n93vk21mh] {
    color: var(--kfx-primary);
    border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
}

.predefined-periods-tab[b-1n93vk21mh] {
    max-height: 400px;
    overflow-y: auto;
}

.period-list[b-1n93vk21mh] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.period-item[b-1n93vk21mh] {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}

.period-item:hover[b-1n93vk21mh] {
    background-color: var(--kfx-primary) !important;
    color: white !important;
}

.period-item:hover .text-muted[b-1n93vk21mh] {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Week numbers styling */
.period-item .text-muted[b-1n93vk21mh] {
    color: var(--bs-secondary-color);
    opacity: 0.85;
}

/* Bright text for "Predefined Periods" label and week numbers in dark mode */
:root[data-theme="dark"] .date-header-dropdown .text-muted[b-1n93vk21mh] {
    color: var(--kfx-text-primary) !important;
}

:root[data-theme="dark"] .period-item .text-muted[b-1n93vk21mh] {
    color: var(--kfx-text-primary) !important;
    opacity: 1;
}

.custom-range-tab[b-1n93vk21mh] {
    min-height: 300px;
}

/* Ensure date range picker is visible */
#InteractiveDateHeaderPicker ~ div[b-1n93vk21mh] {
    visibility: visible !important;
}

#InteractiveDateHeaderPicker ~ div .daterangepicker[b-1n93vk21mh] {
    position: relative !important;
}

/* Make date range input wider and center-aligned */
[b-1n93vk21mh] #InteractiveDateHeaderPicker {
    width: 170px !important;
    text-align: center !important;
}

/* Style the tabs to be more compact */
.nav-sm .nav-link[b-1n93vk21mh] {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Scrollbar styling for the dropdown */
.date-header-dropdown[b-1n93vk21mh]::-webkit-scrollbar {
    width: 8px;
}

.date-header-dropdown[b-1n93vk21mh]::-webkit-scrollbar-track {
    background: var(--bs-tertiary-bg);
    border-radius: 4px;
}

.date-header-dropdown[b-1n93vk21mh]::-webkit-scrollbar-thumb {
    background: var(--bs-secondary);
    border-radius: 4px;
}

.date-header-dropdown[b-1n93vk21mh]::-webkit-scrollbar-thumb:hover {
    background: var(--bs-secondary-emphasis);
}

/* Dark mode fixes for BlazorDateRangePicker */
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker {
    background-color: var(--kfx-dialog-bg) !important;
    border-color: var(--bs-border-color) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker .calendar-table {
    background-color: var(--kfx-dialog-bg) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td,
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker th {
    color: var(--kfx-text-primary) !important;
    background-color: var(--kfx-dialog-bg) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker .calendar-table thead tr {
    background-color: var(--kfx-dialog-bg) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker .calendar-table tbody tr {
    background-color: var(--kfx-dialog-bg) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker .calendar-table tbody td {
    background-color: var(--kfx-dialog-bg) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.available:hover {
    background-color: var(--bs-secondary-bg) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.active,
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.active.start-date,
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.active.end-date {
    background-color: var(--kfx-primary) !important;
    color: var(--kfx-text-on-primary) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.in-range {
    background-color: rgba(var(--kfx-primary-rgb), 0.3) !important;
    color: var(--kfx-text-primary) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker select {
    background-color: var(--kfx-dialog-bg) !important;
    color: var(--kfx-text-primary) !important;
    border-color: var(--bs-border-color) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker .drp-buttons {
    border-top-color: var(--bs-border-color) !important;
    background-color: var(--kfx-dialog-bg) !important;
}

/* Remove even/odd row coloring and off-dates styling in dark mode */
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.week {
    background-color: var(--kfx-dialog-bg) !important;
    color: var(--kfx-text-primary) !important;
}

:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.off,
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.off.in-range,
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.off.start-date,
:root[data-theme="dark"][b-1n93vk21mh]  .daterangepicker td.off.end-date {
    background-color: var(--kfx-dialog-bg) !important;
    color: var(--kfx-text-secondary) !important;
    opacity: 0.5;
}

/* Close button - visible in both light and dark modes */
.date-header-close-btn[b-1n93vk21mh] {
    filter: invert(1);
    opacity: 0.8;
}

.date-header-close-btn:hover[b-1n93vk21mh] {
    opacity: 1;
}

/* Make week numbers more visible in dark mode */
[data-bs-theme="dark"] .period-item .text-muted[b-1n93vk21mh] {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Make week numbers visible in light mode too */
[data-bs-theme="light"] .period-item .text-muted[b-1n93vk21mh],
.period-item .text-muted[b-1n93vk21mh] {
    color: rgba(var(--bs-body-color-rgb), 0.75) !important;
}
/* _content/SharedComponents/Gantt/SplitGantt.razor.rz.scp.css */
.gantttop-leftside[b-fom4lyjhz1] {
  width: var(--kfx-gantt-first-column-width);
}

.gantttop-leftinput[b-fom4lyjhz1] {
  max-width: var(--kfx-gantt-row-height);
}
.gantttop-rightinput[b-fom4lyjhz1] {
  max-width: 72px;
}

.gantttop-righttside[b-fom4lyjhz1] {
  width: 18px;
  max-width: 18px;
}

.toolbar-button[b-fom4lyjhz1] {
  max-height: 24px;
  max-width: 24px;
  padding: 4px;
}

.toolbar-button-right[b-fom4lyjhz1] {
  max-height: 24px;
  max-width: 18px;
}

.toolbar-span[b-fom4lyjhz1] {
  width: 15px;
}

.toolbar-span-smal[b-fom4lyjhz1] {
  width: 1px;
}
.zoomoutbutton[b-fom4lyjhz1] {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #084298;
}
.settingsrow[b-fom4lyjhz1] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.btn-group-separator[b-fom4lyjhz1] {
  margin-left: 2px;
}

.date-range-badge[b-fom4lyjhz1] {
  background-color: rgba(var(--kfx-secondary-500-rgb), 0.5);
  color: var(--kfx-white);
  /* Match btn-sm height for consistent toolbar alignment */
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.acts-filter-label[b-fom4lyjhz1] {
  width: 100px;
  > div {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.logo[b-fom4lyjhz1] {
  border-radius: var(--bs-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: rgba(var(--kfx-white-rgb), 0.5);
  margin-right: 0.25em;
  user-select: none;
  /* Match btn-sm padding for consistent height */
  padding: 0;
  .ymer-logo {
    font-family: "Gilroy", sans-serif;
    font-weight: bold;
    font-size: 0.875rem;
  }
  .y[b-fom4lyjhz1] {
    color: #2d83c5;
  }
  .mer[b-fom4lyjhz1] {
    color: #265aa0;
  }
}

/* Clickable EVENTS label button - match btn-sm height */
.events-toggle-btn[b-fom4lyjhz1] {
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: var(--bs-border-radius);
    transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    user-select: none;
    background-color: rgba(var(--kfx-accent-rgb, 255, 193, 7), 0.2);
    border: 1px solid rgba(var(--kfx-accent-rgb, 255, 193, 7), 0.5);
}

.events-toggle-btn:hover[b-fom4lyjhz1] {
    background-color: rgba(var(--kfx-accent-rgb, 255, 193, 7), 0.4);
    box-shadow: 0 0 0 2px rgba(var(--kfx-accent-rgb, 255, 193, 7), 0.5);
}

.events-toggle-btn:active[b-fom4lyjhz1] {
    background-color: rgba(var(--kfx-accent-rgb, 255, 193, 7), 0.6);
}

/* Chart container with project grid panel */
.chart-container[b-fom4lyjhz1] {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    height: 100%;
}

.project-grid-panel[b-fom4lyjhz1] {
    background-color: var(--bs-body-bg);
    overflow-y: auto;
    flex-shrink: 0;
}

/* Loading overlay for project grid - similar to date header */
.grid-loading-overlay[b-fom4lyjhz1] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--bs-body-bg-rgb, 255, 255, 255), 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
}

.grid-loading-spinner[b-fom4lyjhz1] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(var(--bs-primary-rgb, 13, 110, 253), 0.3);
    border-top-color: var(--bs-primary, #0d6efd);
    border-right-color: var(--bs-primary, #0d6efd);
    border-radius: 50%;
    animation: grid-spin-b-fom4lyjhz1 0.8s linear infinite;
}

@keyframes grid-spin-b-fom4lyjhz1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* _content/SharedComponents/General/ThemeToggle.razor.rz.scp.css */
.theme-toggle-btn[b-py8wi5a5fy] {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: var(--kfx-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.theme-toggle-btn:hover[b-py8wi5a5fy] {
    transform: scale(1.1);
    background-color: transparent;
    border-color: transparent;
}

.theme-toggle-btn:focus[b-py8wi5a5fy] {
    outline: 2px solid var(--kfx-primary);
    outline-offset: 2px;
    background-color: transparent;
}

.theme-toggle-btn .bi[b-py8wi5a5fy] {
    display: inline-block;
}

:root[data-theme='dark'] .theme-toggle-btn[b-py8wi5a5fy] {
    color: #e0e0e0;
}
/* _content/SharedComponents/General/WhoDidThis.razor.rz.scp.css */
/* _content/SharedComponents/Sidebar.razor.rz.scp.css */
:root[b-050ffyra9y] {
  --kfx-sidebar-animation-duration: 300ms;
}

.sidebar[b-050ffyra9y] {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--kfx-bg-secondary, var(--rz-base-background-color, var(--kfx-white)));
  color: var(--kfx-text-primary, var(--rz-text-color, inherit));
  z-index: 1100;
  transform: translateX(0); /* Initially hidden off-screen */
  transition: transform var(--kfx-sidebar-animation-duration) ease; /* Smooth transition for transform */

  display: block;

  .sidebar-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    .sidebar-header {
      flex-shrink: 0;
    }

    .sidebar-body[b-050ffyra9y] {
      flex-grow: 1;
      overflow-y: auto;
      table {
        table-layout: fixed;
      }

      &[b-050ffyra9y]::-webkit-scrollbar {
        width: var(--kfx-gantt-scroll-width);
      }
      &[b-050ffyra9y]::-webkit-scrollbar-track {
        border-radius: 0.5em;
      }
      &[b-050ffyra9y]::-webkit-scrollbar-thumb {
        background-color: var(--kfx-primary-400);
        border: 0.3em solid transparent;
        background-clip: content-box;
        border-radius: 0.5em;
      }
    }

    .sidebar-footer[b-050ffyra9y] {
      flex-shrink: 0;
    }
  }

  .sidebar-resizer[b-050ffyra9y] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0.25rem;
    cursor: col-resize;
    background-color: var(--kfx-secondary-200);
    z-index: 2;
  }

  &.sidebar--left[b-050ffyra9y] {
    left: 0;
    &.sidebar--collapsed {
      transform: translateX(-100%); /* Initially hidden off-screen */
    }
    .sidebar-resizer[b-050ffyra9y] {
      right: 0.25rem;
    }
  }

  &.sidebar--right[b-050ffyra9y] {
    right: 0;
    left: auto;
    &.sidebar--collapsed {
      transform: translateX(100%); /* Initially hidden off-screen */
    }
    .sidebar-resizer[b-050ffyra9y] {
      left: -0.25rem;
    }
  }
}
/* _content/SharedComponents/Time/Timebar.razor.rz.scp.css */
.mainbar[b-3hg052bwig] {
    width: 100%;
    background-color: var(--kfx-timebar-bg, var(--kfx-white));
}

.mainbarzoom[b-3hg052bwig] {
    width: 100%;
    background-color: var(--kfx-timebar-bg, var(--kfx-white));
}

.mainbar[b-3hg052bwig] {
    svg:first-of-type {
        background-color: var(--kfx-secondary-200);
    }
}

.timebar-svg[b-3hg052bwig] {
    fill: white;
}

:root[data-theme='dark'] .mainbar[b-3hg052bwig],
:root[data-theme='dark'] .mainbarzoom[b-3hg052bwig] {
    background-color: var(--kfx-timebar-bg);
}

:root[data-theme='dark'] .mainbar svg:first-of-type[b-3hg052bwig] {
    background-color: var(--kfx-bg-secondary);
}

:root[data-theme='dark'] .timebar-svg[b-3hg052bwig] {
    fill: var(--kfx-bg-secondary);
}

.mainbar:focus[b-3hg052bwig] {
    border-color: var(--kfx-secondary-300);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(var(--kfx-secondary-400-rgb), 0.6);
}

.timebar[b-3hg052bwig] {
    width: 100%;
}

.selectedday[b-3hg052bwig] {
}

.timebartext[b-3hg052bwig] {
    font-size: .8em;
    user-select: none;
    fill: var(--kfx-timebar-text, #000);
}

.timebartimetext[b-3hg052bwig] {
    font-size: .8em;
    user-select: none;
    opacity: 0.5;
    fill: var(--kfx-timebar-text, #000);
}

.timebarclocktext[b-3hg052bwig] {
    font-size: .85em;
    user-select: none;
    opacity: 0.5;
    fill: var(--kfx-timebar-text, #000);
}
.dayline[b-3hg052bwig] {
    stroke: #3272d5;
}
.dayline-vague[b-3hg052bwig] {
    stroke: #3272d522;
}

:root[data-theme='dark'] .timebartext[b-3hg052bwig],
:root[data-theme='dark'] .timebartimetext[b-3hg052bwig],
:root[data-theme='dark'] .timebarclocktext[b-3hg052bwig] {
    fill: var(--kfx-timebar-text);
}

/* Preserve custom colors (weekends, holidays) in dark mode */
:root[data-theme='dark'] .timebartext-colored[b-3hg052bwig] {
    /* Color is set via inline style */
}

.zoombararrows[b-3hg052bwig] {
    fill: var(--kfx-accent);
}

.zoomrectangle[b-3hg052bwig] {
    fill: var(--kfx-white);
}

:root[data-theme='dark'] .zoomrectangle[b-3hg052bwig] {
    fill: #404040;
    opacity: 0.7;
}

.monthrecteven[b-3hg052bwig] {
    fill: var(--kfx-primary);
}

.monthrectodd[b-3hg052bwig] {
    fill: var(--kfx-white);
}

.monthtexteven[b-3hg052bwig] {
    fill: var(--kfx-white);
    user-select: none;
    font-size: smaller;
}

.monthtextodd[b-3hg052bwig] {
    fill: var(--kfx-black);
    user-select: none;
    font-size: smaller;
}

/* Dark mode month headers */
:root[data-theme='dark'] .monthrecteven[b-3hg052bwig] {
    fill: var(--kfx-primary);
}

:root[data-theme='dark'] .monthrectodd[b-3hg052bwig] {
    fill: var(--kfx-bg-secondary);
}

:root[data-theme='dark'] .monthtexteven[b-3hg052bwig] {
    fill: var(--kfx-text-primary);
}

:root[data-theme='dark'] .monthtextodd[b-3hg052bwig] {
    fill: var(--kfx-text-primary);
}
/* _content/SharedComponents/Time/TimebarOptionsInput.razor.rz.scp.css */
/* Main container card - full size with no margins */
.card.h-100.border-0[b-y3dsd8vejn] {
    margin: 0 !important;
    border-radius: 0 !important;
    height: 100% !important;
}

/* Remove any default Bootstrap margins */
.card.h-100.border-0 .card-header[b-y3dsd8vejn] {
    border-radius: 0 !important;
}

.card.h-100.border-0 .card-body[b-y3dsd8vejn] {
    border-radius: 0 !important;
}

.timebar-options-modal[b-y3dsd8vejn] {
    --dialog-bg: #ffffff;
    --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    --header-bg: #f8f9fa;
    --border-radius: 8px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
}

/* Modal structure styling */
.timebar-options-modal .modal-content[b-y3dsd8vejn] {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.timebar-options-modal .modal-header[b-y3dsd8vejn] {
    background-color: var(--kfx-primary);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 0.75rem 1.25rem;
    border-bottom: none;
}

.timebar-options-modal .modal-title[b-y3dsd8vejn] {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.timebar-options-modal .modal-body[b-y3dsd8vejn] {
    padding: 1.5rem;
}

/* Card styling - flatter design aligned with app */
.timebar-options-modal .card[b-y3dsd8vejn] {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.2s ease-in-out;
    margin-bottom: 1rem;
}

.timebar-options-modal .card:hover[b-y3dsd8vejn] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Blue card headers - aligned with app color */
.timebar-options-modal .card-header[b-y3dsd8vejn] {
    border-bottom: 1px solid #dee2e6;
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
    padding: 0.5rem 1rem;
    font-weight: 600;
    background-color: var(--kfx-primary) !important;
    color: white !important;
}

.timebar-options-modal .card-body[b-y3dsd8vejn] {
    padding: 0.75rem 1rem;
}

/* Overview panel styling */
.timebar-options-modal .selected-days-overview .form-check[b-y3dsd8vejn] {
    margin-bottom: 0.25rem;
}

.timebar-options-modal .selected-days-overview .form-check-input[b-y3dsd8vejn] {
    pointer-events: none;
}

.timebar-options-modal .selected-days-overview .form-check-label[b-y3dsd8vejn] {
    font-size: 0.9rem;
    cursor: default;
}

/* Form styling */
.timebar-options-modal .form-check[b-y3dsd8vejn] {
    margin-bottom: var(--spacing-sm);
}

.timebar-options-modal .form-check-label[b-y3dsd8vejn] {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.timebar-options-modal .help-icon[b-y3dsd8vejn] {
    cursor: help;
    font-size: 0.8rem;
    color: #6c757d;
    transition: color 0.2s ease-in-out;
}

.timebar-options-modal .help-icon:hover[b-y3dsd8vejn] {
    color: #007bff;
}

/* Days grid layout */
.timebar-options-modal .days-grid[b-y3dsd8vejn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.timebar-options-modal .days-grid .form-check[b-y3dsd8vejn] {
    margin-bottom: 0;
}

.timebar-options-modal .days-grid .form-check-label[b-y3dsd8vejn] {
    font-size: 0.9rem;
}

/* Consistent button styling to match Gantt dialog exactly */
.timebar-options-modal .btn[b-y3dsd8vejn] {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease-in-out;
}

.timebar-options-modal .btn-outline-secondary[b-y3dsd8vejn] {
    color: #6c757d;
    border-color: #6c757d;
    background-color: transparent;
}

.timebar-options-modal .btn-outline-secondary:hover[b-y3dsd8vejn] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.timebar-options-modal .btn-primary[b-y3dsd8vejn] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
}

.timebar-options-modal .btn-primary:hover[b-y3dsd8vejn] {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .timebar-options-modal .days-grid[b-y3dsd8vejn] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timebar-options-modal .modal-body[b-y3dsd8vejn] {
        padding: 1rem;
    }
    
    .timebar-options-modal .card-body[b-y3dsd8vejn] {
        padding: 1rem;
    }
}
/* _content/SharedComponents/Time/TimeZoombar.razor.rz.scp.css */
.master-timebar[b-tn39c2seco] {
    margin-left: unset !important;
    margin-right: unset !important;
    width: 100%;
}
/* _content/SharedComponents/Windows/Window.razor.rz.scp.css */
@keyframes toTopAnimation-b-w95bvvl3op {
    from {
        transform: translateY(0); /* Start at the current position */
    }
    to {
        transform: translateY(calc(-1 * var(--kfx-window-top))); /* Move the element to align with the document top */
    }
}

.window[b-w95bvvl3op] {
    /* Variables */
    --kfx-dialog-cursor: pointer;
    --kfx-dialog-cursor-dragging: grabbing;
    --kfx-window-fade-animation-duration: 300ms;
    --kfx-window-toTop-animation-duration: 250ms;
    --kfx-window-top: 0;
    --kfx-window-left: 0;
    
    /* Styles */
    position: fixed;
    
    border-color: var(--kfx-black);    
    
    display: flex;
    resize: none;
    overflow: auto;
    background-clip: padding-box;
    outline: 0;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border: 1px solid var(--kfx-primary-100);
    border-radius: var(--bs-border-radius-lg);
    background-color: var(--kfx-panel-bg-color);
    color: var(--bs-modal-color);
    
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--kfx-window-fade-animation-duration) ease-in, visibility 0ms ease-in var(--kfx-window-fade-animation-duration);
    
    &.hidden {
        display: none;
    }
    
    &.visible[b-w95bvvl3op] {
        visibility: visible;
        opacity: 1;
        transition: opacity var(--kfx-window-fade-animation-duration) ease-in, visibility 0ms ease-in 0ms;
    }
    
    &.to-top-animation[b-w95bvvl3op] {
        transform-origin: top;
        animation: toTopAnimation-b-w95bvvl3op var(--kfx-window-toTop-animation-duration) ease-out forwards;
    }
    
    &.maximized[b-w95bvvl3op] {
        top: 35px !important;
        left: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 35px) !important;
        max-height: none !important;
        min-height: unset !important;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
        animation: toTopAnimation var(--kfx-window-toTop-animation-duration) ease-out forwards;[b-w95bvvl3op]
    }
    
    .window-content[b-w95bvvl3op] {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        
        padding: 0.2rem;

        .window-header {
            display: flex;
            flex-shrink: 0;
            align-items: center;
            padding: var(--bs-modal-header-padding);
            border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
            
            border-radius: var(--bs-border-radius-lg);
            
            justify-content: space-between;
            background-color: var(--kfx-primary);
            color: var(--kfx-primary-100);
            cursor: var(--kfx-dialog-cursor);

            .mdi {
                display: flex;
            }

            .window-title[b-w95bvvl3op] {
                display: flex;
                margin-bottom: 0;
                line-height: var(--bs-modal-title-line-height);
                user-select: none;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }
            
            .window-buttons[b-w95bvvl3op] {
                display: flex;
                padding: 0.15rem;
                .btn {
                    margin: 0.15rem;
                }
            }
        }

        .window-child-content[b-w95bvvl3op] {
            margin-top: 0.25rem !important;
            height: 100%;
            overflow: auto;
        }
    }

    /* Updated resize handles */
    .resize-handle[b-w95bvvl3op] {
        position: absolute;
        z-index: 10;
    }

    /* Bottom-right corner (default) */
    .resize-handle-br[b-w95bvvl3op] {
        bottom: 0;
        right: 0;
        width: 16px;
        height: 16px;
        cursor: nwse-resize;
    }

    /* Bottom-left corner */
    .resize-handle-bl[b-w95bvvl3op] {
        bottom: 0;
        left: 0;
        width: 16px;
        height: 16px;
        cursor: nesw-resize;
    }

    /* Top-right corner (smaller) */
    .resize-handle-tr[b-w95bvvl3op] {
        top: 0;
        right: 0;
        width: 12px; /* Smaller size */
        height: 12px;
        cursor: nesw-resize;
    }

    /* Top-left corner */
    .resize-handle-tl[b-w95bvvl3op] {
        top: 0;
        left: 0;
        width: 16px;
        height: 16px;
        cursor: nwse-resize;
    }
}
/* _content/SharedComponents/Windows/WindowManager.razor.rz.scp.css */
/* _content/SharedComponents/Windows/WindowManagerDropdownBtn.razor.rz.scp.css */
