/* /Components/Gantt/GanttChart.razor.rz.scp.css */
.gantt-container[b-cfvp0hya4s] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow-x: auto;
    min-width: 100%;
}

/* Header */
.gantt-header[b-cfvp0hya4s] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 16px;
}

.gantt-filters[b-cfvp0hya4s] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-group[b-cfvp0hya4s] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label[b-cfvp0hya4s] {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.filter-tags[b-cfvp0hya4s] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.filter-tag[b-cfvp0hya4s] {
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover[b-cfvp0hya4s] {
    background: #f0f0f0;
}

.filter-tag.active[b-cfvp0hya4s] {
    background: #4a90d9;
    color: white;
    border-color: #4a90d9;
}

.gantt-info[b-cfvp0hya4s] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.last-update[b-cfvp0hya4s] {
    font-size: 11px;
    color: #666;
}

.btn-refresh[b-cfvp0hya4s] {
    padding: 6px 12px;
    background: #4a90d9;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-refresh:hover[b-cfvp0hya4s] {
    background: #3a7bc8;
}

/* Timeline Container */
.gantt-timeline-container[b-cfvp0hya4s] {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}

.gantt-sidebar[b-cfvp0hya4s] {
    width: 250px;
    min-width: 250px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #e0e0e0;
}

.gantt-sidebar-header[b-cfvp0hya4s] {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.gantt-timeline[b-cfvp0hya4s] {
    position: relative;
    flex: 1 0 auto;
    min-width: 1400px;
    overflow-x: auto;
}

.gantt-timeline-header[b-cfvp0hya4s] {
    display: flex;
    position: relative;
    height: 28px;
    background: #f0f4f8;
    border-bottom: 1px solid #e0e0e0;
}

.gantt-year[b-cfvp0hya4s] {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
}

.gantt-timeline-months[b-cfvp0hya4s] {
    display: flex;
    position: relative;
    height: 24px;
    background: #f8f9fa;
}

.gantt-month[b-cfvp0hya4s] {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666;
    border-right: 1px solid #eee;
    box-sizing: border-box;
    text-transform: capitalize;
}

/* Gantt Body */
.gantt-body[b-cfvp0hya4s] {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: auto;
}

.gantt-group[b-cfvp0hya4s] {
    border-bottom: 1px solid #e8e8e8;
}

.gantt-row[b-cfvp0hya4s] {
    display: flex;
    min-height: 36px;
    border-bottom: 1px solid #c8c8c8;
    transition: background-color 0.15s;
}

.gantt-row:hover[b-cfvp0hya4s] {
    background: #f5f8fa;
}

.gantt-row.selected[b-cfvp0hya4s] {
    background: #e3f2fd;
}

.gantt-row-group[b-cfvp0hya4s] {
    font-weight: 600;
}

.gantt-row-group:hover[b-cfvp0hya4s] {
    background: #f0f0f0;
}

.gantt-task-name[b-cfvp0hya4s] {
    padding: 8px 16px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gantt-task-child[b-cfvp0hya4s] {
    font-weight: normal;
}

.task-expand[b-cfvp0hya4s] {
    cursor: pointer;
    font-size: 10px;
    color: #666;
    width: 16px;
    text-align: center;
}

.task-type-icon[b-cfvp0hya4s] {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Gantt Bars */
.gantt-bar-container[b-cfvp0hya4s] {
    position: relative;
    height: 100%;
    width: 100%;
}

.gantt-bar[b-cfvp0hya4s] {
    position: absolute;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: filter 0.2s;
    min-width: 4px;
}

.gantt-bar:hover[b-cfvp0hya4s] {
    filter: brightness(1.1);
    z-index: 10;
}

.gantt-bar-group[b-cfvp0hya4s] {
    height: 8px;
    border-radius: 4px;
    opacity: 0.6;
}

.gantt-bar-subgroup[b-cfvp0hya4s] {
    min-width: 32px;
}

.gantt-bar-progress[b-cfvp0hya4s] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,0.2);
    border-radius: 4px 0 0 4px;
}

/* Milestone */
.gantt-milestone[b-cfvp0hya4s] {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #ffc107;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Today marker */
.gantt-today-marker[b-cfvp0hya4s] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff5722;
    z-index: 5;
    pointer-events: none;
}

.gantt-today-marker[b-cfvp0hya4s]::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: #ff5722;
    border-radius: 50%;
}

/* Dependencies */
.gantt-dependency-line[b-cfvp0hya4s] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

/* Detail Panel */
.gantt-detail-panel[b-cfvp0hya4s] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    min-width: 350px;
    max-width: 450px;
    z-index: 1000;
}

.detail-header[b-cfvp0hya4s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.detail-header h3[b-cfvp0hya4s] {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.btn-close[b-cfvp0hya4s] {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.btn-close:hover[b-cfvp0hya4s] {
    color: #333;
}

.detail-content[b-cfvp0hya4s] {
    padding: 16px;
}

.detail-row[b-cfvp0hya4s] {
    display: flex;
    margin-bottom: 12px;
    font-size: 13px;
}

.detail-label[b-cfvp0hya4s] {
    width: 140px;
    flex-shrink: 0;
    color: #666;
    font-weight: 500;
}

.detail-value[b-cfvp0hya4s] {
    color: #333;
    flex: 1;
}

.status-badge[b-cfvp0hya4s] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    color: white;
    font-size: 11px;
}

/* Legend */
.gantt-legend[b-cfvp0hya4s] {
    display: flex;
    gap: 24px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #666;
}

.legend-item[b-cfvp0hya4s] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-icon[b-cfvp0hya4s] {
    color: #ffc107;
}

.legend-line[b-cfvp0hya4s] {
    color: #999;
    letter-spacing: 2px;
}

/* Scrollbar */
.gantt-body[b-cfvp0hya4s]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.gantt-body[b-cfvp0hya4s]::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.gantt-body[b-cfvp0hya4s]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.gantt-body[b-cfvp0hya4s]::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .gantt-sidebar[b-cfvp0hya4s] {
        width: 150px;
        min-width: 150px;
    }
    
    .gantt-header[b-cfvp0hya4s] {
        flex-direction: column;
    }
    
    .gantt-detail-panel[b-cfvp0hya4s] {
        width: 90%;
        min-width: auto;
    }
}
/* /Components/Gantt/SvgGanttChart.razor.rz.scp.css */
.svg-gantt-container[b-nhmx7mjhlf] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    overflow: hidden;
    max-width: 100%;
}

.svg-gantt-header[b-nhmx7mjhlf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.svg-gantt-header h2[b-nhmx7mjhlf] {
    margin: 0;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.svg-gantt-controls[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}




.filter-group[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-group label[b-nhmx7mjhlf] {
    font-size: 11px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

.filter-select[b-nhmx7mjhlf] {
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    min-width: 120px;
    max-width: 180px;
    background: white;
}

.filter-select-small[b-nhmx7mjhlf] {
    min-width: 90px;
    max-width: 110px;
}

.filter-select:focus[b-nhmx7mjhlf] {
    outline: none;
    border-color: #4a90d9;
    box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
}

.btn-today[b-nhmx7mjhlf] {
    padding: 5px 10px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-today:hover[b-nhmx7mjhlf] {
    background: #e64a19;
}

.btn-reset-filters[b-nhmx7mjhlf] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn-reset-filters:hover[b-nhmx7mjhlf] {
    background: linear-gradient(180deg, #fff7f5 0%, #ffe8e1 100%);
    color: #9a3412;
    border-color: #fdba74;
    box-shadow: 0 2px 6px rgba(154, 52, 18, 0.12);
}

.btn-reset-filters:focus-visible[b-nhmx7mjhlf] {
    outline: none;
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
}

.btn-reset-filters:active[b-nhmx7mjhlf] {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(154, 52, 18, 0.12);
}

.zoom-select[b-nhmx7mjhlf] {
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.date-range-group[b-nhmx7mjhlf] {
    margin-left: 4px;
}

.date-input[b-nhmx7mjhlf] {
    padding: 4px 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    width: 115px;
    background: white;
}

.date-input:focus[b-nhmx7mjhlf] {
    outline: none;
    border-color: #4a90d9;
    box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
}

.svg-gantt-info[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.last-update[b-nhmx7mjhlf] {
    font-size: 11px;
    color: #666;
}

.btn-refresh[b-nhmx7mjhlf] {
    padding: 5px 10px;
    background: #4a90d9;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
}

.btn-refresh:hover[b-nhmx7mjhlf] {
    background: #3a7bc8;
}

/* Visibility toggle buttons */
.btn-toggle[b-nhmx7mjhlf] {
    padding: 4px 8px;
    background: #e9ecef;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-toggle:hover[b-nhmx7mjhlf] {
    background: #dee2e6;
}

.btn-toggle-active[b-nhmx7mjhlf] {
    background: #4a90d9;
    color: white;
    border-color: #4a90d9;
}

.btn-toggle-active:hover[b-nhmx7mjhlf] {
    background: #3a7bc8;
}

/* Main body - flex container */
.svg-gantt-body[b-nhmx7mjhlf] {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 0;
    max-width: 100%;
    width: 100%;
}

/* Sidebar - Fixed width */
.svg-gantt-sidebar[b-nhmx7mjhlf] {
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 2px solid #ddd;
    z-index: 10;
    flex-shrink: 0;
    transition: width 0.2s ease, min-width 0.2s ease;
}

.sidebar-collapsed[b-nhmx7mjhlf] {
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    overflow: hidden;
}

.sidebar-header[b-nhmx7mjhlf] {
    height: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-weight: 600;
    font-size: 12px;
    color: #333;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    gap: 6px;
}

.btn-sidebar-toggle[b-nhmx7mjhlf] {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 12px;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}

.btn-sidebar-toggle:hover[b-nhmx7mjhlf] {
    color: #333;
}

.sidebar-rows[b-nhmx7mjhlf] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-row[b-nhmx7mjhlf] {
    height: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid #c8c8c8;
    cursor: pointer;
    transition: background-color 0.15s;
    padding-right: 6px;
    box-sizing: border-box;
}

.sidebar-row:hover[b-nhmx7mjhlf] {
    background: #f5f8fa;
}

.row-level-0[b-nhmx7mjhlf] {
    font-weight: 600;
    font-size: 11px;
}

.row-level-1[b-nhmx7mjhlf] {
    font-weight: 500;
    font-size: 10px;
}

.row-level-2[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #555;
}

.row-level-3[b-nhmx7mjhlf] {
    font-size: 9px;
    color: #777;
    font-style: italic;
}








.expand-icon[b-nhmx7mjhlf] {
    font-size: 8px;
    color: #666;
    width: 10px;
    min-width: 10px;
    flex-shrink: 0;
    display: inline-block;
    text-align: center;
}

.row-icon[b-nhmx7mjhlf] {
    width: 6px;
    height: 6px;
    border-radius: 1px;
    flex-shrink: 0;
}

.row-workflow-icon[b-nhmx7mjhlf] {
    width: 16px;
    min-width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
}

.workflow-icon-emergence[b-nhmx7mjhlf] {
    color: #d19a00;
}

.workflow-icon-study[b-nhmx7mjhlf] {
    color: #46607a;
}

.workflow-icon-realization[b-nhmx7mjhlf] {
    color: #1f6fd1;
}

.workflow-icon-done[b-nhmx7mjhlf] {
    color: #1a8f53;
}

.row-title[b-nhmx7mjhlf] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    line-height: 1.2;
}

.row-title-clickable[b-nhmx7mjhlf] {
    cursor: pointer;
    transition: color 0.15s;
}

.row-title-clickable:hover[b-nhmx7mjhlf] {
    color: #4a90d9;
    text-decoration: underline;
}

.row-child-count[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #888;
    margin-left: 4px;
    flex-shrink: 0;
}

/* Timeline wrapper - contains header and body */
.svg-gantt-timeline-wrapper[b-nhmx7mjhlf] {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100vw - 300px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Sticky timeline header */
.timeline-header[b-nhmx7mjhlf] {
    flex-shrink: 0;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    z-index: 5;
}

.gantt-header-svg[b-nhmx7mjhlf] {
    display: block;
}

/* Scrollable timeline body */
.svg-gantt-timeline[b-nhmx7mjhlf] {
    flex: 1;
    overflow: auto;
    background: #fafafa;
}

/* Scrollbar styling */
.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar {
    height: 14px;
    width: 10px;
}

.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 7px;
    border: 2px solid #e0e0e0;
}

.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar-corner {
    background: #e0e0e0;
}

/* Firefox scrollbar */
.svg-gantt-timeline[b-nhmx7mjhlf] {
    scrollbar-width: auto;
    scrollbar-color: #888 #e0e0e0;
}

.gantt-svg[b-nhmx7mjhlf] {
    display: block;
}

.gantt-bar:hover rect:first-child[b-nhmx7mjhlf] {
    filter: brightness(1.1);
}

.gantt-bar-group:hover[b-nhmx7mjhlf] {
    opacity: 0.8;
}

.gantt-milestone[b-nhmx7mjhlf] {
    cursor: pointer;
}

.gantt-milestone:hover[b-nhmx7mjhlf] {
    filter: brightness(1.1);
}


/* Tooltip - positioned near the clicked bar */
.gantt-tooltip[b-nhmx7mjhlf] {
    position: fixed;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    min-width: 220px;
    max-width: 320px;
    z-index: 1000;
    font-size: 11px;
    animation: tooltipFadeIn-b-nhmx7mjhlf 0.15s ease-out;
}

.gantt-tooltip.tooltip-group[b-nhmx7mjhlf] {
    min-width: 260px;
}

@keyframes tooltipFadeIn-b-nhmx7mjhlf {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip-header[b-nhmx7mjhlf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: #f5f5f5;
    border-radius: 8px 8px 0 0;
}

.tooltip-header-info[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tooltip-type[b-nhmx7mjhlf] {
    font-size: 9px;
    text-transform: uppercase;
    color: #888;
    font-weight: 500;
}

.tooltip-key[b-nhmx7mjhlf] {
    font-weight: 600;
    color: #555;
    font-size: 11px;
}

.tooltip-key-link[b-nhmx7mjhlf] {
    color: #0052cc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: color 0.15s;
}

.tooltip-key-link:hover[b-nhmx7mjhlf] {
    color: #0065ff;
    text-decoration: underline;
}

.tooltip-external-icon[b-nhmx7mjhlf] {
    font-size: 10px;
    opacity: 0.7;
}

.tooltip-key-link:hover .tooltip-external-icon[b-nhmx7mjhlf] {
    opacity: 1;
}

.tooltip-close[b-nhmx7mjhlf] {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.tooltip-close:hover[b-nhmx7mjhlf] {
    color: #333;
}

.tooltip-title[b-nhmx7mjhlf] {
    padding: 10px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    line-height: 1.4;
    font-size: 12px;
}

.tooltip-content[b-nhmx7mjhlf] {
    padding: 10px;
}

.tooltip-row[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.tooltip-row:last-child[b-nhmx7mjhlf] {
    margin-bottom: 0;
}

.tooltip-icon[b-nhmx7mjhlf] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tooltip-dates[b-nhmx7mjhlf] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 4px;
}

.tooltip-dates-previous[b-nhmx7mjhlf] {
    grid-template-columns: 1fr 1fr;
    background: #fff3e0;
    border-left: 3px solid #ff9800;
    margin-top: -6px;
}

.tooltip-date-item[b-nhmx7mjhlf] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tooltip-date-label[b-nhmx7mjhlf] {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
}

.tooltip-date-value[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #333;
    font-weight: 500;
}

.tooltip-date-overdue[b-nhmx7mjhlf] {
    color: #d32f2f;
    font-weight: 600;
}

.tooltip-label[b-nhmx7mjhlf] {
    color: #666;
}

.tooltip-arrow[b-nhmx7mjhlf] {
    color: #999;
    font-size: 10px;
}

.tooltip-info-row[b-nhmx7mjhlf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-top: 1px solid #f0f0f0;
}

.tooltip-info-label[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #666;
}

.tooltip-info-value[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #333;
    font-weight: 500;
    text-align: right;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tooltip-assignee-row[b-nhmx7mjhlf] {
    padding-top: 6px;
    border-top: 1px solid #eee;
}

.tooltip-assignee-label[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #888;
}

.tooltip-assignee[b-nhmx7mjhlf] {
    color: #333;
    font-weight: 500;
}

.tooltip-notes[b-nhmx7mjhlf] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
    border-top: 1px solid #eee;
}

.tooltip-notes-label[b-nhmx7mjhlf] {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
}

.tooltip-notes-value[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #555;
    line-height: 1.4;
    max-height: 60px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.tooltip-progress[b-nhmx7mjhlf] {
    position: relative;
    height: 16px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tooltip-children-info[b-nhmx7mjhlf] {
    padding-top: 8px;
    border-top: 1px solid #eee;
    margin-top: 4px;
}

.tooltip-children-count[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #666;
    font-style: italic;
}

/* Web links section */
.tooltip-weblinks[b-nhmx7mjhlf] {
    padding-top: 8px;
    border-top: 1px solid #eee;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tooltip-weblinks-label[b-nhmx7mjhlf] {
    font-size: 10px;
    font-weight: 600;
    color: #555;
}

.tooltip-weblinks-list[b-nhmx7mjhlf] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tooltip-weblink-item[b-nhmx7mjhlf] {
    font-size: 11px;
    color: #0052cc;
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 3px;
    background: #f0f4ff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
    transition: background 0.15s;
}

.tooltip-weblink-item:hover[b-nhmx7mjhlf] {
    background: #deebff;
    text-decoration: underline;
}

.tooltip-weblinks-loading[b-nhmx7mjhlf] {
    font-size: 10px;
    color: #999;
    font-style: italic;
}

.tooltip-progress-bar[b-nhmx7mjhlf] {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    border-radius: 7px;
    transition: width 0.3s ease;
}

.tooltip-progress-text[b-nhmx7mjhlf] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    font-weight: 600;
    color: #333;
}

/* Legacy Detail Panel - keeping for reference */
.svg-gantt-detail-panel[b-nhmx7mjhlf] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    min-width: 350px;
    max-width: 450px;
    z-index: 1000;
    display: none; /* Hidden - using tooltip instead */
}

.detail-header[b-nhmx7mjhlf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.detail-header h3[b-nhmx7mjhlf] {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.btn-close[b-nhmx7mjhlf] {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.btn-close:hover[b-nhmx7mjhlf] {
    color: #333;
}

.detail-content[b-nhmx7mjhlf] {
    padding: 16px;
}

.detail-row[b-nhmx7mjhlf] {
    display: flex;
    margin-bottom: 12px;
    font-size: 13px;
}

.detail-label[b-nhmx7mjhlf] {
    width: 100px;
    flex-shrink: 0;
    color: #666;
    font-weight: 500;
}

.detail-value[b-nhmx7mjhlf] {
    color: #333;
    flex: 1;
}

.status-badge[b-nhmx7mjhlf] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    color: white;
    font-size: 11px;
}

/* Legend */
.svg-gantt-legend[b-nhmx7mjhlf] {
    display: flex;
    gap: 24px;
    padding: 12px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #666;
}

.legend-item[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color[b-nhmx7mjhlf] {
    width: 16px;
    height: 10px;
    border-radius: 2px;
}

.legend-icon[b-nhmx7mjhlf] {
    color: #ffc107;
    font-size: 14px;
}

.legend-line[b-nhmx7mjhlf] {
    width: 16px;
    height: 3px;
    border-radius: 1px;
}

.legend-separator[b-nhmx7mjhlf] {
    color: #ccc;
    font-weight: bold;
    padding: 0 8px;
}

.legend-item-workflow .row-workflow-icon[b-nhmx7mjhlf] {
    width: 18px;
    min-width: 18px;
    font-size: 14px;
}

.legend-previsionnelle[b-nhmx7mjhlf] {
    vertical-align: middle;
}

/* Scrollbar */
.sidebar-rows[b-nhmx7mjhlf]::-webkit-scrollbar,
.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.sidebar-rows[b-nhmx7mjhlf]::-webkit-scrollbar-track,
.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.sidebar-rows[b-nhmx7mjhlf]::-webkit-scrollbar-thumb,
.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.sidebar-rows[b-nhmx7mjhlf]::-webkit-scrollbar-thumb:hover,
.svg-gantt-timeline[b-nhmx7mjhlf]::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Blocking Popup Styles */
.blocking-popup[b-nhmx7mjhlf] {
    position: fixed;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    min-width: 280px;
    max-width: 400px;
    max-height: 400px;
    z-index: 1001;
    font-size: 11px;
    animation: tooltipFadeIn-b-nhmx7mjhlf 0.15s ease-out;
    display: flex;
    flex-direction: column;
}

.blocking-popup-header[b-nhmx7mjhlf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #1a3a52;
    color: white;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 12px;
}

.blocking-popup-close[b-nhmx7mjhlf] {
    background: none;
    border: none;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.blocking-popup-close:hover[b-nhmx7mjhlf] {
    color: white;
}

.blocking-popup-list[b-nhmx7mjhlf] {
    padding: 8px;
    overflow-y: auto;
    max-height: 350px;
}

.blocking-popup-item[b-nhmx7mjhlf] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 6px;
    background: #f8f9fa;
    margin-bottom: 6px;
    transition: background-color 0.15s, box-shadow 0.15s;
    cursor: pointer;
}

.blocking-popup-item:last-child[b-nhmx7mjhlf] {
    margin-bottom: 0;
}

.blocking-popup-item:hover[b-nhmx7mjhlf] {
    background: #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blocking-popup-item-header[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.blocking-link-key[b-nhmx7mjhlf] {
    font-weight: 600;
    color: #0052cc;
    text-decoration: none;
    font-size: 11px;
    flex-shrink: 0;
}

.blocking-link-key:hover[b-nhmx7mjhlf] {
    color: #0065ff;
    text-decoration: underline;
}

.blocking-link-status[b-nhmx7mjhlf] {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 10px;
    background: #e9ecef;
    color: #555;
    white-space: nowrap;
}

.blocking-link-summary[b-nhmx7mjhlf] {
    font-size: 11px;
    color: #333;
    line-height: 1.4;
    cursor: pointer;
}

.blocking-link-summary:hover[b-nhmx7mjhlf] {
    color: #0052cc;
}

.blocking-popup-item-details[b-nhmx7mjhlf] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #e0e0e0;
    font-size: 10px;
    color: #666;
}

.blocking-popup-item-row[b-nhmx7mjhlf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blocking-popup-item-label[b-nhmx7mjhlf] {
    color: #888;
}

.blocking-popup-item-value[b-nhmx7mjhlf] {
    color: #333;
    font-weight: 500;
}

.blocking-popup-view-btn[b-nhmx7mjhlf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 6px;
    padding: 6px 10px;
    background: #1a3a52;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    transition: background-color 0.15s;
}

.blocking-popup-view-btn:hover[b-nhmx7mjhlf] {
    background: #0d2636;
}
/* /Components/Layout/LoginDisplay.razor.rz.scp.css */
.user-info[b-f8caywxdpy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.user-name[b-f8caywxdpy] {
    color: #fff;
    font-size: 12px;
    opacity: 0.9;
}

.btn-logout[b-f8caywxdpy],
.btn-login[b-f8caywxdpy] {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-logout:hover[b-f8caywxdpy],
.btn-login:hover[b-f8caywxdpy] {
    background: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    color: #fff;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-mbabqyn3ub] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
}

main[b-mbabqyn3ub] {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
}

.sidebar[b-mbabqyn3ub] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    position: relative;
    overflow: visible;
    transition: width 0.3s ease;
}

.top-row[b-mbabqyn3ub] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mbabqyn3ub]  a, .top-row[b-mbabqyn3ub]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mbabqyn3ub]  a:hover, .top-row[b-mbabqyn3ub]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mbabqyn3ub]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mbabqyn3ub] {
        justify-content: space-between;
    }

    .top-row[b-mbabqyn3ub]  a, .top-row[b-mbabqyn3ub]  .btn-link {
        margin-left: 0;
    }
    
    .sidebar-toggle[b-mbabqyn3ub] {
        display: none;
    }
}

@media (min-width: 641px) {
    .page[b-mbabqyn3ub] {
        flex-direction: row;
        height: 100vh;
    }

    .sidebar[b-mbabqyn3ub] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }
    
    .page.sidebar-collapsed .sidebar[b-mbabqyn3ub] {
        width: 60px;
    }

    main[b-mbabqyn3ub] {
        flex: 1;
        height: 100vh;
        overflow: auto;
    }

    .top-row[b-mbabqyn3ub] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mbabqyn3ub]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mbabqyn3ub], article[b-mbabqyn3ub] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mbabqyn3ub] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mbabqyn3ub] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-1obo8ygnoo] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-1obo8ygnoo] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-1obo8ygnoo] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.navbar-brand[b-1obo8ygnoo] {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.brand-text[b-1obo8ygnoo] {
    white-space: nowrap;
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.login-display-wrapper[b-1obo8ygnoo] {
    transition: opacity 0.3s ease;
}

.brand-logo[b-1obo8ygnoo] {
    display: inline-block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3C!-- Globe --%3E%3Ccircle cx='32' cy='36' r='22' fill='%234a90d9' opacity='0.3'/%3E%3Cellipse cx='32' cy='36' rx='22' ry='8' fill='none' stroke='%234a90d9' stroke-width='1.5' opacity='0.5'/%3E%3Cpath d='M32 14 Q32 36 32 58' fill='none' stroke='%234a90d9' stroke-width='1.5' opacity='0.5'/%3E%3Cpath d='M12 30 Q32 38 52 30' fill='none' stroke='%234a90d9' stroke-width='1' opacity='0.4'/%3E%3Cpath d='M12 42 Q32 34 52 42' fill='none' stroke='%234a90d9' stroke-width='1' opacity='0.4'/%3E%3C!-- Squirrel body --%3E%3Cpath d='M24 42 Q20 38 22 32 Q24 26 30 26 Q36 26 38 30 Q40 34 38 40 Q36 44 32 46 Q28 46 24 42Z' fill='%23ff9800'/%3E%3C!-- Squirrel head --%3E%3Ccircle cx='30' cy='24' r='10' fill='%23ff9800'/%3E%3C!-- Ears --%3E%3Cpath d='M22 16 Q20 10 24 12 Q26 14 25 18' fill='%23ff9800'/%3E%3Cpath d='M36 14 Q38 8 40 12 Q40 16 37 18' fill='%23ff9800'/%3E%3C!-- Ear tufts --%3E%3Cpath d='M22 14 Q19 8 23 10' stroke='%23ffb74d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M38 12 Q40 6 42 10' stroke='%23ffb74d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C!-- Face --%3E%3Ccircle cx='26' cy='22' r='2' fill='%23333'/%3E%3Ccircle cx='34' cy='22' r='2' fill='%23333'/%3E%3Ccircle cx='27' cy='21' r='0.8' fill='white'/%3E%3Ccircle cx='35' cy='21' r='0.8' fill='white'/%3E%3Cellipse cx='30' cy='27' rx='3' ry='2' fill='%23ffcc80'/%3E%3Ccircle cx='30' cy='26' r='1.2' fill='%23333'/%3E%3C!-- Tail --%3E%3Cpath d='M38 40 Q48 36 52 24 Q54 18 50 16 Q46 16 46 22 Q44 32 40 38' fill='%23ff9800'/%3E%3Cpath d='M50 18 Q52 14 48 14 Q44 16 46 20' fill='%23ffb74d'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.bi[b-1obo8ygnoo] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
    flex-shrink: 0;
    transition: margin 0.3s ease;
}

.bi-house-door-fill-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-calendar-range-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-range' viewBox='0 0 16 16'%3E%3Cpath d='M9 7a1 1 0 0 1 1-1h5v2h-5a1 1 0 0 1-1-1zM1 9h4a1 1 0 0 1 0 2H1V9z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-table-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-table' viewBox='0 0 16 16'%3E%3Cpath d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm15 2h-4v3h4V4zm0 4h-4v3h4V8zm0 4h-4v3h3a1 1 0 0 0 1-1v-2zm-5 3v-3H6v3h4zm-5 0v-3H1v2a1 1 0 0 0 1 1h3zm-4-4h4V8H1v3zm0-4h4V4H1v3zm5-3v3h4V4H6zm4 4H6v3h4V8z'/%3E%3C/svg%3E");
}

.bi-gear-fill-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.nav-item[b-1obo8ygnoo] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-1obo8ygnoo] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-1obo8ygnoo] {
        padding-bottom: 1rem;
    }

    .nav-item[b-1obo8ygnoo]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        transition: all 0.3s ease;
    }

.nav-text[b-1obo8ygnoo] {
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.nav-item[b-1obo8ygnoo]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-1obo8ygnoo]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.bi-urba-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V2zM1 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V7zM1 12a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-2zm5 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-2z'/%3E%3C/svg%3E");
}

.bi-allegro-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1zM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8z'/%3E%3Cpath d='M6.5 5a.5.5 0 0 1 .5.5V7h2V5.5a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0V8H7v2.5a.5.5 0 0 1-1 0v-5a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.bi-train-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4 3.5A.5.5 0 0 1 4.5 3h7a.5.5 0 0 1 .5.5v1A.5.5 0 0 1 11.5 5h-7a.5.5 0 0 1-.5-.5v-1zM4.5 6h7a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-1A.5.5 0 0 1 4.5 6z'/%3E%3Cpath d='M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H4z'/%3E%3Cpath d='M4 11v1a1 1 0 0 0 1 1h1l-1 3H4l1-3H4v-1h8v1h-1l1 3h-1l-1-3h1a1 1 0 0 0 1-1v-1H4zm2.5-1a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zm3 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1z'/%3E%3C/svg%3E");
}

.bi-dashboard-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5v-3zm8 0A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5v-3zm-8 8A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5v-3zm8 0A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5v-3z'/%3E%3C/svg%3E");
}

.bi-kanban-nav-menu[b-1obo8ygnoo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h11zm-11-1a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2h-11z'/%3E%3Cpath d='M6.5 3a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V3zm-4 0a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V3zm8 0a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V3z'/%3E%3C/svg%3E");
}

.nav-group[b-1obo8ygnoo] {
    padding-bottom: 0;
}

.nav-group-checkbox[b-1obo8ygnoo] {
    display: none;
}

.nav-group-toggle[b-1obo8ygnoo] {
    color: #d7d7d7;
    background: none;
    border: none;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-group-toggle:hover[b-1obo8ygnoo] {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-chevron[b-1obo8ygnoo] {
    margin-left: auto;
    margin-right: 0.5rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.nav-group-checkbox:checked ~ .nav-group-toggle .nav-chevron[b-1obo8ygnoo] {
    transform: rotate(90deg);
}

.nav-submenu[b-1obo8ygnoo] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.nav-group-checkbox:checked ~ .nav-submenu[b-1obo8ygnoo] {
    display: block;
}

.nav-submenu .nav-item[b-1obo8ygnoo] {
    padding-bottom: 0;
    padding-left: 1rem;
}

.nav-link-status[b-1obo8ygnoo] {
    color: rgba(215, 215, 215, 0.78);
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
}

.nav-item-status[b-1obo8ygnoo] {
    padding-left: 1rem;
}

.nav-nested-group[b-1obo8ygnoo] {
    padding-left: 1rem;
}

.nav-nested-group .nav-group-toggle[b-1obo8ygnoo] {
    min-height: 2.75rem;
    font-size: 0.85rem;
}

.nav-nested-group .nav-submenu .nav-item[b-1obo8ygnoo] {
    padding-left: 1.5rem;
}

.nav-epic-key[b-1obo8ygnoo] {
    margin-left: 0.45rem;
    font-size: 0.72rem;
    color: rgba(215, 215, 215, 0.65);
    white-space: nowrap;
}

.nav-scrollable[b-1obo8ygnoo] {
    display: none;
    transition: all 0.3s ease;
}

.navbar-toggler:checked ~ .nav-scrollable[b-1obo8ygnoo] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-1obo8ygnoo] {
        display: none;
    }

    .nav-scrollable[b-1obo8ygnoo] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Collapsed sidebar state */
.page.sidebar-collapsed .navbar-brand[b-1obo8ygnoo] {
    justify-content: center;
}

.page.sidebar-collapsed .brand-text[b-1obo8ygnoo],
.page.sidebar-collapsed .login-display-wrapper[b-1obo8ygnoo] {
    display: none;
}

.page.sidebar-collapsed .nav-group.px-3[b-1obo8ygnoo],
.page.sidebar-collapsed .nav-item.px-3[b-1obo8ygnoo] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page.sidebar-collapsed .nav-group-toggle[b-1obo8ygnoo],
.page.sidebar-collapsed .nav-item[b-1obo8ygnoo]  .nav-link {
    justify-content: center;
}

.page.sidebar-collapsed .bi[b-1obo8ygnoo] {
    margin-right: 0;
}

.page.sidebar-collapsed .nav-text[b-1obo8ygnoo],
.page.sidebar-collapsed .nav-chevron[b-1obo8ygnoo] {
    display: none;
}

.page.sidebar-collapsed .nav-submenu[b-1obo8ygnoo] {
    display: none !important;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5shau8x7cp],
.components-reconnect-repeated-attempt-visible[b-5shau8x7cp],
.components-reconnect-failed-visible[b-5shau8x7cp],
.components-pause-visible[b-5shau8x7cp],
.components-resume-failed-visible[b-5shau8x7cp],
.components-rejoining-animation[b-5shau8x7cp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-retrying[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-failed[b-5shau8x7cp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-5shau8x7cp] {
    display: block;
}


#components-reconnect-modal[b-5shau8x7cp] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-5shau8x7cp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-5shau8x7cp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-5shau8x7cp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-5shau8x7cp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-5shau8x7cp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-5shau8x7cp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-5shau8x7cp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-5shau8x7cp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-5shau8x7cp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-5shau8x7cp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-5shau8x7cp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-5shau8x7cp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-5shau8x7cp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-5shau8x7cp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-5shau8x7cp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-5shau8x7cp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-5shau8x7cp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-5shau8x7cp {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/SidebarToggle.razor.rz.scp.css */
button[b-230hucgj0e] {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 52px;
    padding: 0;
    border-radius: 0 8px 8px 0;
    background: rgb(5, 39, 103);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    transition: background 0.2s ease, color 0.2s ease;
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.4);
}

button:hover[b-230hucgj0e] {
    background: #2a5298;
    color: white;
}

@media (max-width: 640.98px) {
    button[b-230hucgj0e] {
        display: none;
    }
}
/* /Components/Pages/Allegro/SviGrillePage.razor.rz.scp.css */
/* ===== Page Header ===== */
.planner-header[b-wyhuy4c9gw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.planner-title[b-wyhuy4c9gw] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.btn-refresh[b-wyhuy4c9gw] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-refresh:hover[b-wyhuy4c9gw] {
        background: #005a9e;
    }

.icon-spin[b-wyhuy4c9gw] {
    display: inline-block;
    animation: spin-b-wyhuy4c9gw 1s linear infinite;
}

@keyframes spin-b-wyhuy4c9gw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Grid Wrapper ===== */
.planner-grid-wrapper[b-wyhuy4c9gw] {
    overflow-x: auto;
    padding: 0;
}

/* ===== Table ===== */
.planner-grid[b-wyhuy4c9gw] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    color: #2e2e2e;
    min-width: 900px;
}

.planner-grid thead th[b-wyhuy4c9gw] {
    background: #f5f5f5;
    color: #555;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.55rem 0.75rem;
    border-bottom: 2px solid #ddd;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* ===== Column Widths ===== */
.col-num[b-wyhuy4c9gw]      { width: 36px;  text-align: center; }
.col-status[b-wyhuy4c9gw]   { width: 28px;  text-align: center; }
.col-name[b-wyhuy4c9gw]     { min-width: 220px; }
.col-assigned[b-wyhuy4c9gw] { width: 90px; }
.col-date[b-wyhuy4c9gw]     { width: 90px;  white-space: nowrap; }
.col-duration[b-wyhuy4c9gw] { width: 80px;  white-space: nowrap; }
.col-progress[b-wyhuy4c9gw] { width: 130px; }
.col-priority[b-wyhuy4c9gw] { width: 100px; white-space: nowrap; }
.col-bucket[b-wyhuy4c9gw]   { width: 120px; }

/* ===== Group Rows ===== */
.group-row[b-wyhuy4c9gw] {
    background: #f0f4f8;
    cursor: pointer;
    user-select: none;
}

    .group-row:hover[b-wyhuy4c9gw] {
        background: #e5edf5;
    }

    .group-row td[b-wyhuy4c9gw] {
        padding: 0.55rem 0.75rem;
        border-bottom: 1px solid #d8e0e8;
        font-weight: 600;
        color: #1a1a1a;
    }

.group-name[b-wyhuy4c9gw] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.group-chevron[b-wyhuy4c9gw] {
    font-size: 0.7rem;
    display: inline-block;
    transition: transform 0.2s ease;
    color: #555;
}

    .group-chevron.expanded[b-wyhuy4c9gw] {
        transform: rotate(90deg);
    }

/* ===== Task Rows ===== */
.task-row td[b-wyhuy4c9gw] {
    padding: 0.45rem 0.75rem;
    border-bottom: 1px solid #ebebeb;
    vertical-align: middle;
}

.task-row:hover td[b-wyhuy4c9gw] {
    background: #f9f9f9;
}

.task-row.task-completed td[b-wyhuy4c9gw] {
    color: #888;
}

.task-name[b-wyhuy4c9gw] {
    padding-left: 1.8rem !important;
}

/* ===== Status Icons ===== */
.task-status-icon[b-wyhuy4c9gw],
.group-status-icon[b-wyhuy4c9gw] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: middle;
}

.status-completed[b-wyhuy4c9gw] {
    background: #2e7d32;
    position: relative;
}

    .status-completed[b-wyhuy4c9gw]::after {
        content: '✓';
        color: white;
        font-size: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.status-in-progress[b-wyhuy4c9gw] {
    border: 2.5px solid #1565c0;
    background: transparent;
    position: relative;
}

    .status-in-progress[b-wyhuy4c9gw]::after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1565c0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.status-not-started[b-wyhuy4c9gw] {
    border: 1.5px solid #bbb;
    background: transparent;
}

/* ===== Progress Bar ===== */
.progress-bar-wrap[b-wyhuy4c9gw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .progress-bar-wrap > div.progress-bar[b-wyhuy4c9gw] {
        flex: 1;
        height: 8px;
        border-radius: 4px;
        background: #1e7e34;
        min-width: 0;
        max-width: 80px;
        transition: width 0.3s ease;
    }

    .progress-bar-wrap > div.progress-bar[style*="width: 0%"][b-wyhuy4c9gw] {
        background: #e0e0e0;
    }

    .progress-bar-wrap > div.progress-bar.progress-complete[b-wyhuy4c9gw] {
        background: #2e7d32;
    }

    .progress-bar-wrap > div.progress-bar.progress-partial[b-wyhuy4c9gw] {
        background: #1565c0;
    }

    .progress-bar-wrap > div.progress-bar.progress-empty[b-wyhuy4c9gw] {
        background: #e0e0e0;
        width: 100% !important;
        opacity: 0.4;
    }

.progress-label[b-wyhuy4c9gw] {
    font-size: 0.78rem;
    color: #555;
    white-space: nowrap;
    min-width: 30px;
}

/* ===== Priority ===== */
.priority-dot[b-wyhuy4c9gw] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.3rem;
    vertical-align: middle;
}

.priority-urgent[b-wyhuy4c9gw]    { background: #b71c1c; }
.priority-important[b-wyhuy4c9gw] { background: #e65100; }
.priority-medium[b-wyhuy4c9gw]    { background: #1565c0; }
.priority-low[b-wyhuy4c9gw]       { background: #4caf50; }

/* ===== Assignees ===== */
.assignees[b-wyhuy4c9gw] {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.2rem;
    align-items: center;
}

.avatar[b-wyhuy4c9gw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0078d4;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    flex-shrink: 0;
    cursor: default;
}

.avatar-more[b-wyhuy4c9gw] {
    background: #666;
    font-size: 0.6rem;
}

/* ===== Overdue Date ===== */
.date-overdue[b-wyhuy4c9gw] {
    color: #b71c1c;
    font-weight: 600;
}

/* ===== Loading / Error ===== */
.loading-container[b-wyhuy4c9gw],
.error-container[b-wyhuy4c9gw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #555;
    gap: 1rem;
}

.spinner[b-wyhuy4c9gw] {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #0078d4;
    border-radius: 50%;
    animation: spin-b-wyhuy4c9gw 0.8s linear infinite;
}

.btn-retry[b-wyhuy4c9gw] {
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
}

    .btn-retry:hover[b-wyhuy4c9gw] {
        background: #005a9e;
    }

/* ===== Discovery / Config Help ===== */
.error-msg[b-wyhuy4c9gw] {
    color: #b71c1c;
    font-size: 0.9rem;
    background: #fff3f3;
    border-left: 3px solid #b71c1c;
    padding: 0.5rem 0.75rem;
    border-radius: 0 4px 4px 0;
    max-width: 700px;
    word-break: break-word;
}

.plan-discovery[b-wyhuy4c9gw] {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    max-width: 700px;
    text-align: left;
}

    .plan-discovery h4[b-wyhuy4c9gw] {
        margin: 0 0 0.5rem;
        font-size: 0.95rem;
        color: #2e7d32;
    }

.discovery-table[b-wyhuy4c9gw] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

    .discovery-table th[b-wyhuy4c9gw] {
        background: #c8e6c9;
        padding: 0.35rem 0.6rem;
        text-align: left;
        font-weight: 600;
    }

    .discovery-table td[b-wyhuy4c9gw] {
        padding: 0.35rem 0.6rem;
        border-bottom: 1px solid #c8e6c9;
    }

    .discovery-table code[b-wyhuy4c9gw] {
        font-family: monospace;
        font-size: 0.8rem;
        background: #f1f8e9;
        padding: 0.1rem 0.3rem;
        border-radius: 3px;
    }

.config-help[b-wyhuy4c9gw] {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 1rem 1.25rem;
    max-width: 700px;
    text-align: left;
}

    .config-help h4[b-wyhuy4c9gw] {
        margin: 0 0 0.5rem;
        font-size: 0.95rem;
        color: #e65100;
    }

    .config-help ol[b-wyhuy4c9gw] {
        margin: 0 0 0.5rem;
        padding-left: 1.2rem;
        font-size: 0.85rem;
        line-height: 1.9;
    }

    .config-help code[b-wyhuy4c9gw] {
        background: #fff3e0;
        padding: 0.1rem 0.3rem;
        border-radius: 3px;
        font-family: monospace;
        font-size: 0.8rem;
    }

.hint[b-wyhuy4c9gw] {
    font-size: 0.8rem;
    color: #666;
    margin: 0.5rem 0 0;
}
/* /Components/Pages/Applicatifs/Cartographie.razor.rz.scp.css */
.page-container[b-of35nonq31] {
    max-width: 1480px;
    margin: 0 auto;
    padding: 1.5rem;
    color: #1f2937;
}

.page-header[b-of35nonq31] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.page-header h1[b-of35nonq31] {
    margin: 0;
    font-size: 1.8rem;
    color: #14213d;
}

.page-subtitle[b-of35nonq31] {
    margin: 0.35rem 0 0;
    color: #64748b;
    font-size: 0.95rem;
}

.page-context[b-of35nonq31] {
    margin: 0.35rem 0 0;
    color: #475569;
    font-size: 0.9rem;
}

.page-actions[b-of35nonq31] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.loading-container[b-of35nonq31],
.error-container[b-of35nonq31] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    text-align: center;
}

.spinner[b-of35nonq31] {
    width: 40px;
    height: 40px;
    border: 4px solid #d7dee7;
    border-top-color: #0f766e;
    border-radius: 50%;
    animation: spin-b-of35nonq31 0.8s linear infinite;
}

@keyframes spin-b-of35nonq31 {
    to {
        transform: rotate(360deg);
    }
}

.error-container[b-of35nonq31] {
    color: #b91c1c;
}

.error-msg[b-of35nonq31] {
    max-width: 760px;
}

.cartography-card[b-of35nonq31] {
    background: #fff;
    border: 1px solid #d7dee7;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
}

.cartography-meta[b-of35nonq31] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #fcfdfd 0%, #f8fafc 100%);
}

.eyebrow[b-of35nonq31] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cartography-meta h2[b-of35nonq31] {
    margin: 0.35rem 0 0;
    font-size: 1.2rem;
    color: #0f172a;
}

.meta-details[b-of35nonq31] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
    white-space: nowrap;
}

.cartography-content[b-of35nonq31] {
    padding: 1.25rem 1.35rem 1.5rem;
    overflow-x: auto;
}

.cartography-content[b-of35nonq31]  .panel {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.cartography-content[b-of35nonq31]  .panelContent {
    padding: 0.9rem 1rem;
    color: #4b5563;
}

.cartography-content[b-of35nonq31]  p {
    margin: 0;
}

.cartography-content[b-of35nonq31]  a {
    color: #0f766e;
    text-decoration: underline;
}

.cartography-content[b-of35nonq31]  img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    cursor: zoom-in;
}

.viewer-overlay[b-of35nonq31] {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(15, 23, 42, 0.88);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 1rem;
}

.viewer-shell[b-of35nonq31] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.16);
    border-radius: 20px;
    overflow: hidden;
}

.viewer-toolbar[b-of35nonq31] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.viewer-title-group[b-of35nonq31] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.viewer-title-group span[b-of35nonq31] {
    color: #94a3b8;
    font-size: 0.85rem;
}

.viewer-actions[b-of35nonq31] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.viewer-btn[b-of35nonq31] {
    min-width: 48px;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    font-size: 0.85rem;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.viewer-btn:hover[b-of35nonq31] {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(226, 232, 240, 0.55);
}

.viewer-btn:disabled[b-of35nonq31] {
    opacity: 0.45;
    cursor: default;
}

.viewer-btn-close[b-of35nonq31] {
    min-width: 90px;
}

.viewer-stage[b-of35nonq31] {
    flex: 1;
    overflow: auto;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    cursor: grab;
    user-select: none;
}

.viewer-stage.viewer-stage-dragging[b-of35nonq31] {
    cursor: grabbing;
}

.viewer-image[b-of35nonq31] {
    max-width: none;
    height: auto;
    transform-origin: top center;
    transition: transform 0.12s ease-out;
    background: #fff;
    border-radius: 12px;
    pointer-events: none;
    user-select: none;
}

.btn[b-of35nonq31] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.5rem 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.btn:hover[b-of35nonq31] {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn:disabled[b-of35nonq31] {
    cursor: default;
    opacity: 0.6;
    transform: none;
}

.btn-primary[b-of35nonq31] {
    background: #0f766e;
    color: #fff;
}

.btn-outline-secondary[b-of35nonq31] {
    background: transparent;
    border: 1px solid #94a3b8;
    color: #475569;
}

.btn-outline-secondary:hover[b-of35nonq31] {
    background: #f8fafc;
    color: #0f172a;
}

@media (max-width: 960px) {

    .page-header[b-of35nonq31],
    .cartography-meta[b-of35nonq31] {
        flex-direction: column;
    }

    .page-actions[b-of35nonq31],
    .meta-details[b-of35nonq31] {
        align-items: flex-start;
        white-space: normal;
    }

    .viewer-toolbar[b-of35nonq31] {
        flex-direction: column;
        align-items: stretch;
    }

    .viewer-actions[b-of35nonq31] {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .page-container[b-of35nonq31] {
        padding: 1rem;
    }

    .cartography-meta[b-of35nonq31],
    .cartography-content[b-of35nonq31] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .viewer-overlay[b-of35nonq31] {
        padding: 0.5rem;
    }

    .viewer-shell[b-of35nonq31] {
        border-radius: 14px;
    }
}
/* /Components/Pages/PlanTransport/CompareProdVsOdv.razor.rz.scp.css */
.compare-container[b-5ypoma56eo] {
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.compare-header[b-5ypoma56eo] {
    margin-bottom: 1.5rem;
}

.compare-header-top[b-5ypoma56eo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.compare-header h1[b-5ypoma56eo] {
    font-size: 1.6rem;
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
}

.btn-export[b-5ypoma56eo] {
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid #1a3a52;
    border-radius: 4px;
    background: #1a3a52;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-export:hover[b-5ypoma56eo] {
    background: #0d2636;
}

.header-actions[b-5ypoma56eo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh[b-5ypoma56eo] {
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid #2e7d32;
    border-radius: 4px;
    background: #2e7d32;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-refresh:hover:not(:disabled)[b-5ypoma56eo] {
    background: #1b5e20;
}

.btn-refresh:disabled[b-5ypoma56eo] {
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-refresh.cooldown[b-5ypoma56eo] {
    background: #999;
    border-color: #aaa;
    color: #fff;
}

.compare-subtitle[b-5ypoma56eo] {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Loading */
.loading-container[b-5ypoma56eo] {
    text-align: center;
    padding: 3rem 1rem;
    color: #444;
}

.spinner[b-5ypoma56eo] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: #4a90d9;
    border-radius: 50%;
    animation: spin-b-5ypoma56eo 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-5ypoma56eo { to { transform: rotate(360deg); } }

.loading-hint[b-5ypoma56eo] {
    font-size: 0.8rem;
    color: #666;
}

/* Error */
.error-container[b-5ypoma56eo] {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 50, 50, 0.08);
    border: 1px solid rgba(220, 50, 50, 0.3);
    border-radius: 8px;
    color: #333;
}

.btn-retry[b-5ypoma56eo] {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #4a90d9;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-retry:hover[b-5ypoma56eo] {
    background: #3a7bc8;
}

/* Summary cards */
.compare-summary[b-5ypoma56eo] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.summary-card[b-5ypoma56eo] {
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-value[b-5ypoma56eo] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.summary-label[b-5ypoma56eo] {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-warning[b-5ypoma56eo] {
    border-color: rgba(255, 152, 0, 0.4);
    background: rgba(255, 152, 0, 0.08);
}

.summary-warning .summary-value[b-5ypoma56eo] {
    color: #ff9800;
}

.summary-ok[b-5ypoma56eo] {
    border-color: rgba(76, 175, 80, 0.4);
    background: rgba(76, 175, 80, 0.08);
}

.summary-ok .summary-value[b-5ypoma56eo] {
    color: #4caf50;
}

.summary-info[b-5ypoma56eo] {
    border-color: rgba(74, 144, 217, 0.4);
    background: rgba(74, 144, 217, 0.08);
}

.summary-info .summary-value[b-5ypoma56eo] {
    color: #4a90d9;
    font-size: 1.2rem;
}

/* No diff banner */
.no-diff-banner[b-5ypoma56eo] {
    padding: 1.5rem;
    text-align: center;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #2e7d32;
    font-size: 1.1rem;
}

/* Filter bar */
.filter-bar[b-5ypoma56eo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-label[b-5ypoma56eo] {
    color: #666;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.filter-btn[b-5ypoma56eo] {
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    background: rgba(0,0,0,0.04);
    color: #555;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.filter-btn:hover[b-5ypoma56eo] {
    background: rgba(0,0,0,0.08);
}

.filter-btn.active[b-5ypoma56eo] {
    background: rgba(74, 144, 217, 0.2);
    border-color: #4a90d9;
    color: #4a90d9;
}

.filter-prod.active[b-5ypoma56eo] {
    background: rgba(33, 150, 243, 0.1);
    border-color: #1565c0;
    color: #1565c0;
}

.filter-odv.active[b-5ypoma56eo] {
    background: rgba(156, 39, 176, 0.1);
    border-color: #7b1fa2;
    color: #7b1fa2;
}

.filter-time.active[b-5ypoma56eo] {
    background: rgba(255, 152, 0, 0.1);
    border-color: #e65100;
    color: #e65100;
}

/* Day sections */
.day-section[b-5ypoma56eo] {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.day-header[b-5ypoma56eo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.02);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.day-header:hover[b-5ypoma56eo] {
    background: rgba(0,0,0,0.04);
}

.day-toggle[b-5ypoma56eo] {
    font-size: 0.75rem;
    color: #666;
    flex-shrink: 0;
}

.day-title[b-5ypoma56eo] {
    font-size: 1rem;
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: capitalize;
}

.day-badge[b-5ypoma56eo] {
    background: rgba(255, 152, 0, 0.12);
    color: #e65100;
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.day-counts[b-5ypoma56eo] {
    margin-left: auto;
    font-size: 0.75rem;
    color: #666;
    flex-shrink: 0;
}

.day-content[b-5ypoma56eo] {
    padding: 0.5rem;
}

/* Diff table */
.diff-table[b-5ypoma56eo] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.diff-table th[b-5ypoma56eo] {
    text-align: left;
    padding: 0.5rem 0.75rem;
    color: #555;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.diff-table td[b-5ypoma56eo] {
    padding: 0.5rem 0.75rem;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    vertical-align: top;
}

.svc-name[b-5ypoma56eo] {
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.row-prod-only[b-5ypoma56eo] {
    background: rgba(33, 150, 243, 0.05);
}

.row-odv-only[b-5ypoma56eo] {
    background: rgba(156, 39, 176, 0.05);
}

.row-time-diff[b-5ypoma56eo] {
    background: rgba(255, 152, 0, 0.05);
}

/* Type badges */
.type-badge[b-5ypoma56eo] {
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-prod[b-5ypoma56eo] {
    background: rgba(33, 150, 243, 0.12);
    color: #1565c0;
}

.badge-odv[b-5ypoma56eo] {
    background: rgba(156, 39, 176, 0.12);
    color: #7b1fa2;
}

.badge-time[b-5ypoma56eo] {
    background: rgba(255, 152, 0, 0.12);
    color: #e65100;
}

.no-detail[b-5ypoma56eo] {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Nested time comparison table */
.time-table[b-5ypoma56eo] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

.time-table th[b-5ypoma56eo] {
    text-align: left;
    padding: 0.25rem 0.5rem;
    color: #555;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.time-table td[b-5ypoma56eo] {
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.time-prod[b-5ypoma56eo] {
    color: #1565c0;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
}

.time-odv[b-5ypoma56eo] {
    color: #7b1fa2;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
}

.time-ecart[b-5ypoma56eo] {
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
    color: #2e7d32;
    font-weight: 600;
}

.ecart-warning[b-5ypoma56eo] {
    color: #ff5252 !important;
    font-weight: 700;
}

/* Red warning badges for écarts > 5 min */
.day-badge-warning[b-5ypoma56eo] {
    background: rgba(211, 47, 47, 0.12) !important;
    color: #d32f2f !important;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.badge-ecart-warning[b-5ypoma56eo] {
    background: rgba(211, 47, 47, 0.12) !important;
    color: #d32f2f !important;
}

/* Responsive */
@media (max-width: 768px) {
    .compare-summary[b-5ypoma56eo] {
        flex-direction: column;
    }

    .day-header[b-5ypoma56eo] {
        flex-wrap: wrap;
    }

    .day-counts[b-5ypoma56eo] {
        margin-left: 0;
        width: 100%;
    }

    .diff-table[b-5ypoma56eo] {
        font-size: 0.75rem;
    }
}
/* /Components/Pages/PlanTransport/CompareS3VsPmt.razor.rz.scp.css */
.compare-container[b-bjikg71fas] {
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.compare-header[b-bjikg71fas] {
    margin-bottom: 1.5rem;
}

.compare-header-top[b-bjikg71fas] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.compare-header h1[b-bjikg71fas] {
    font-size: 1.6rem;
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
}

.btn-export[b-bjikg71fas] {
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid #1a3a52;
    border-radius: 4px;
    background: #1a3a52;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-export:hover[b-bjikg71fas] {
    background: #0d2636;
}

.header-actions[b-bjikg71fas] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-refresh[b-bjikg71fas] {
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid #2e7d32;
    border-radius: 4px;
    background: #2e7d32;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-refresh:hover:not(:disabled)[b-bjikg71fas] {
    background: #1b5e20;
}

.btn-refresh:disabled[b-bjikg71fas] {
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-refresh.cooldown[b-bjikg71fas] {
    background: #999;
    border-color: #aaa;
    color: #fff;
}

.compare-subtitle[b-bjikg71fas] {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Loading */
.loading-container[b-bjikg71fas] {
    text-align: center;
    padding: 3rem 1rem;
    color: #444;
}

.spinner[b-bjikg71fas] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: #4a90d9;
    border-radius: 50%;
    animation: spin-b-bjikg71fas 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-bjikg71fas { to { transform: rotate(360deg); } }

.loading-hint[b-bjikg71fas] {
    font-size: 0.8rem;
    color: #666;
}

/* Error */
.error-container[b-bjikg71fas] {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 50, 50, 0.08);
    border: 1px solid rgba(220, 50, 50, 0.3);
    border-radius: 8px;
    color: #333;
}

.btn-retry[b-bjikg71fas] {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: #4a90d9;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-retry:hover[b-bjikg71fas] {
    background: #3a7bc8;
}

/* Summary cards */
.compare-summary[b-bjikg71fas] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.summary-card[b-bjikg71fas] {
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-value[b-bjikg71fas] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.summary-label[b-bjikg71fas] {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-warning[b-bjikg71fas] {
    border-color: rgba(255, 152, 0, 0.4);
    background: rgba(255, 152, 0, 0.08);
}

.summary-warning .summary-value[b-bjikg71fas] {
    color: #ff9800;
}

.summary-ok[b-bjikg71fas] {
    border-color: rgba(76, 175, 80, 0.4);
    background: rgba(76, 175, 80, 0.08);
}

.summary-ok .summary-value[b-bjikg71fas] {
    color: #4caf50;
}

.summary-info[b-bjikg71fas] {
    border-color: rgba(74, 144, 217, 0.4);
    background: rgba(74, 144, 217, 0.08);
}

.summary-info .summary-value[b-bjikg71fas] {
    color: #4a90d9;
    font-size: 1.2rem;
}

/* No diff banner */
.no-diff-banner[b-bjikg71fas] {
    padding: 1.5rem;
    text-align: center;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #2e7d32;
    font-size: 1.1rem;
}

/* Filter bar */
.filter-bar[b-bjikg71fas] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-label[b-bjikg71fas] {
    color: #666;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.filter-btn[b-bjikg71fas] {
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    background: rgba(0,0,0,0.04);
    color: #555;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.filter-btn:hover[b-bjikg71fas] {
    background: rgba(0,0,0,0.08);
}

.filter-btn.active[b-bjikg71fas] {
    background: rgba(74, 144, 217, 0.2);
    border-color: #4a90d9;
    color: #4a90d9;
}

.filter-prod.active[b-bjikg71fas] {
    background: rgba(33, 150, 243, 0.1);
    border-color: #1565c0;
    color: #1565c0;
}

.filter-pmt.active[b-bjikg71fas] {
    background: rgba(0, 150, 136, 0.1);
    border-color: #00796b;
    color: #00796b;
}

.filter-station.active[b-bjikg71fas] {
    background: rgba(255, 152, 0, 0.1);
    border-color: #e65100;
    color: #e65100;
}

/* Day sections */
.day-section[b-bjikg71fas] {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.day-header[b-bjikg71fas] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.02);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.day-header:hover[b-bjikg71fas] {
    background: rgba(0,0,0,0.04);
}

.day-toggle[b-bjikg71fas] {
    font-size: 0.75rem;
    color: #666;
    flex-shrink: 0;
}

.day-title[b-bjikg71fas] {
    font-size: 1rem;
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: capitalize;
}

.day-badge[b-bjikg71fas] {
    background: rgba(255, 152, 0, 0.12);
    color: #e65100;
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.day-counts[b-bjikg71fas] {
    margin-left: auto;
    font-size: 0.75rem;
    color: #666;
    flex-shrink: 0;
}

.day-content[b-bjikg71fas] {
    padding: 0.5rem;
}

/* Diff table */
.diff-table[b-bjikg71fas] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.diff-table th[b-bjikg71fas] {
    text-align: left;
    padding: 0.5rem 0.75rem;
    color: #555;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.diff-table td[b-bjikg71fas] {
    padding: 0.5rem 0.75rem;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    vertical-align: top;
}

.svc-name[b-bjikg71fas] {
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.row-prod-only[b-bjikg71fas] {
    background: rgba(33, 150, 243, 0.05);
}

.row-pmt-only[b-bjikg71fas] {
    background: rgba(0, 150, 136, 0.05);
}

.row-station-diff[b-bjikg71fas] {
    background: rgba(255, 152, 0, 0.05);
}

/* Type badges */
.type-badge[b-bjikg71fas] {
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-prod[b-bjikg71fas] {
    background: rgba(33, 150, 243, 0.12);
    color: #1565c0;
}

.badge-pmt[b-bjikg71fas] {
    background: rgba(0, 150, 136, 0.12);
    color: #00796b;
}

.badge-station[b-bjikg71fas] {
    background: rgba(255, 152, 0, 0.12);
    color: #e65100;
}

.no-detail[b-bjikg71fas] {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Role badges */
.role-badge[b-bjikg71fas] {
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
}

.role-depart[b-bjikg71fas] {
    background: rgba(76, 175, 80, 0.12);
    color: #2e7d32;
}

.role-arrivee[b-bjikg71fas] {
    background: rgba(244, 67, 54, 0.12);
    color: #c62828;
}

.role-inter[b-bjikg71fas] {
    background: rgba(255, 193, 7, 0.12);
    color: #f57f17;
}

/* Nested station comparison table */
.station-table[b-bjikg71fas] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

.station-table th[b-bjikg71fas] {
    text-align: left;
    padding: 0.25rem 0.5rem;
    color: #555;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.station-table td[b-bjikg71fas] {
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.order-cell[b-bjikg71fas] {
    color: #555;
    font-size: 0.75rem;
    text-align: center;
    min-width: 25px;
}

.time-prod[b-bjikg71fas] {
    color: #1565c0;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
}

.time-pmt[b-bjikg71fas] {
    color: #00796b;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
}

.time-ecart[b-bjikg71fas] {
    font-family: 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8rem;
    color: #2e7d32;
    font-weight: 600;
}

.ecart-warning[b-bjikg71fas] {
    color: #ff5252 !important;
    font-weight: 700;
}

/* Red warning badges for écarts > 5 min */
.day-badge-warning[b-bjikg71fas] {
    background: rgba(211, 47, 47, 0.12) !important;
    color: #d32f2f !important;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.badge-ecart-warning[b-bjikg71fas] {
    background: rgba(211, 47, 47, 0.12) !important;
    color: #d32f2f !important;
}

/* Responsive */
@media (max-width: 768px) {
    .compare-summary[b-bjikg71fas] {
        flex-direction: column;
    }

    .day-header[b-bjikg71fas] {
        flex-wrap: wrap;
    }

    .day-counts[b-bjikg71fas] {
        margin-left: 0;
        width: 100%;
    }

    .diff-table[b-bjikg71fas] {
        font-size: 0.75rem;
    }

    .station-table[b-bjikg71fas] {
        font-size: 0.7rem;
    }
}
/* /Components/Pages/PlanTransport/RechercheService.razor.rz.scp.css */
/* ── Layout ─────────────────────────────────────────────────────────────── */
.search-container[b-epbfdgq6k4] {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: inherit;
}

.search-header[b-epbfdgq6k4] {
    margin-bottom: 1.5rem;
}

.search-header h1[b-epbfdgq6k4] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.3rem;
}

.search-subtitle[b-epbfdgq6k4] {
    color: #546e7a;
    font-size: 0.95rem;
    margin: 0;
}

/* ── Search form ─────────────────────────────────────────────────────────── */
.search-form[b-epbfdgq6k4] {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    background: #f8f9ff;
    border: 1px solid #c5cae9;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.form-group[b-epbfdgq6k4] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label[b-epbfdgq6k4] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #455a64;
}

.form-input[b-epbfdgq6k4] {
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid #c5cae9;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    color: #263238;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 170px;
}

    .form-input:focus[b-epbfdgq6k4] {
        outline: none;
        border-color: #3f51b5;
        box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.15);
    }

.btn-search[b-epbfdgq6k4] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 40px;
    padding: 0 1.4rem;
    background: #3f51b5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

    .btn-search:hover:not(:disabled)[b-epbfdgq6k4] {
        background: #303f9f;
    }

    .btn-search:active:not(:disabled)[b-epbfdgq6k4] {
        transform: scale(0.98);
    }

    .btn-search:disabled[b-epbfdgq6k4] {
        background: #9fa8da;
        cursor: not-allowed;
    }

.validation-msg[b-epbfdgq6k4] {
    align-self: center;
    color: #e65100;
    font-size: 0.88rem;
    font-weight: 500;
}
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;[b-epbfdgq6k4]
}

@keyframes spin-b-epbfdgq6k4 {
    to { transform: rotate(360deg); }
}

/* ── Error ───────────────────────────────────────────────────────────────── */
.error-container[b-epbfdgq6k4] {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    color: #b71c1c;
    margin-bottom: 1.5rem;
}

    .error-container h3[b-epbfdgq6k4] {
        margin: 0 0 0.4rem;
        font-size: 1rem;
    }

.btn-retry[b-epbfdgq6k4] {
    margin-top: 0.5rem;
    padding: 0.35rem 1rem;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
}

    .btn-retry:hover[b-epbfdgq6k4] {
        background: #c62828;
    }

/* ── Results section ─────────────────────────────────────────────────────── */
.results-section[b-epbfdgq6k4] {
    margin-top: 0.5rem;
}

.results-title[b-epbfdgq6k4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.results-label[b-epbfdgq6k4] {
    font-size: 1rem;
    color: #37474f;
}

.badge-found[b-epbfdgq6k4] {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.badge-not-found[b-epbfdgq6k4] {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

/* ── Two-panel layout ────────────────────────────────────────────────────── */
.results-panels[b-epbfdgq6k4] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 860px) {
    .results-panels[b-epbfdgq6k4] {
        grid-template-columns: 1fr;
    }
}

.result-panel[b-epbfdgq6k4] {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ── Panel headers ───────────────────────────────────────────────────────── */
.panel-header[b-epbfdgq6k4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.1rem;
}

.panel-header-s3[b-epbfdgq6k4] {
    background: #e8eaf6;
    border-bottom: 2px solid #7986cb;
}

.panel-header-pmt[b-epbfdgq6k4] {
    background: #e0f2f1;
    border-bottom: 2px solid #26a69a;
}

.panel-title[b-epbfdgq6k4] {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #263238;
}

.panel-badge[b-epbfdgq6k4] {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
}

.panel-badge-ok[b-epbfdgq6k4] {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.panel-badge-missing[b-epbfdgq6k4] {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f48fb1;
}

/* ── Panel body ──────────────────────────────────────────────────────────── */
.panel-body[b-epbfdgq6k4] {
    padding: 1rem 1.1rem;
    flex: 1;
}

.panel-empty[b-epbfdgq6k4] {
    padding: 1.5rem 1.1rem;
    color: #78909c;
    font-size: 0.92rem;
    text-align: center;
    flex: 1;
}

/* ── Info grid ───────────────────────────────────────────────────────────── */
.info-grid[b-epbfdgq6k4] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.info-key[b-epbfdgq6k4] {
    color: #546e7a;
    white-space: nowrap;
    font-weight: 500;
    padding: 0.15rem 0;
}

.info-value[b-epbfdgq6k4] {
    color: #263238;
    padding: 0.15rem 0;
}

/* ── Route / itinerary ───────────────────────────────────────────────────── */
.route-section[b-epbfdgq6k4] {
    border-top: 1px solid #f0f0f0;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.route-title[b-epbfdgq6k4] {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #90a4ae;
    margin-bottom: 0.6rem;
}

.route-line[b-epbfdgq6k4] {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0.5rem;
    border-left: 2px solid #c5cae9;
}

.route-stop[b-epbfdgq6k4] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    position: relative;
    padding: 0.3rem 0 0.3rem 0.5rem;
    margin-left: -0.6rem;
}

.stop-dot[b-epbfdgq6k4] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    flex-shrink: 0;
    margin-top: 0.3rem;
    box-shadow: 0 0 0 1.5px #9fa8da;
}

.stop-dot-origin[b-epbfdgq6k4] {
    background: #3f51b5;
    box-shadow: 0 0 0 1.5px #3f51b5;
}

.stop-dot-dest[b-epbfdgq6k4] {
    background: #e53935;
    box-shadow: 0 0 0 1.5px #e53935;
}

.stop-dot-via[b-epbfdgq6k4] {
    background: #90a4ae;
    box-shadow: 0 0 0 1.5px #90a4ae;
}

.stop-info[b-epbfdgq6k4] {
    display: flex;
    flex-direction: column;
}

.stop-name[b-epbfdgq6k4] {
    font-size: 0.92rem;
    font-weight: 600;
    color: #263238;
}

.stop-time[b-epbfdgq6k4] {
    font-size: 0.8rem;
    color: #546e7a;
}

.stop-platform[b-epbfdgq6k4] {
    font-size: 0.78rem;
    color: #90a4ae;
}

/* ── Stops table (PMT) ───────────────────────────────────────────────────── */
.stops-table-wrap[b-epbfdgq6k4] {
    overflow-x: auto;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin-top: 0.25rem;
}

.stops-table[b-epbfdgq6k4] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
}

    .stops-table th[b-epbfdgq6k4] {
        background: #f5f5f5;
        color: #546e7a;
        font-weight: 700;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 0.45rem 0.7rem;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    .stops-table td[b-epbfdgq6k4] {
        padding: 0.4rem 0.7rem;
        border-bottom: 1px solid #f5f5f5;
        color: #37474f;
        vertical-align: middle;
    }

    .stops-table tbody tr:last-child td[b-epbfdgq6k4] {
        border-bottom: none;
    }

    .stops-table tbody tr:hover[b-epbfdgq6k4] {
        background: #fafafa;
    }

.stop-origin-row td[b-epbfdgq6k4] {
    background: #e8eaf6 !important;
    font-weight: 600;
}

.stop-dest-row td[b-epbfdgq6k4] {
    background: #fce4ec !important;
    font-weight: 600;
}

.stop-order[b-epbfdgq6k4] {
    width: 32px;
    color: #90a4ae;
    font-size: 0.78rem;
    text-align: center;
}

.stop-name-cell[b-epbfdgq6k4] {
    min-width: 140px;
}

.stop-time-cell[b-epbfdgq6k4] {
    white-space: nowrap;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #455a64;
}

/* ── Sillon badges ───────────────────────────────────────────────────────── */
.sillon-badge[b-epbfdgq6k4] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
}

.sillon-confirme[b-epbfdgq6k4] {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.sillon-supprime[b-epbfdgq6k4] {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f48fb1;
}

.sillon-modifie[b-epbfdgq6k4] {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

.sillon-autre[b-epbfdgq6k4] {
    background: #f5f5f5;
    color: #546e7a;
    border: 1px solid #e0e0e0;
}
/* /Components/Pages/Urba/FicheApplicatifDetail.razor.rz.scp.css */
.page-container[b-88eyv5ex6f] {
    padding: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    color: #1f2937;
}

.page-header[b-88eyv5ex6f] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.back-link[b-88eyv5ex6f] {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
}

.back-link:hover[b-88eyv5ex6f] {
    text-decoration: underline;
}

.context-line[b-88eyv5ex6f] {
    margin-top: 0.45rem;
    color: #64748b;
    font-size: 0.88rem;
}

.loading-container[b-88eyv5ex6f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    gap: 1rem;
}

.spinner[b-88eyv5ex6f] {
    width: 40px;
    height: 40px;
    border: 4px solid #d7dee7;
    border-top-color: #0f766e;
    border-radius: 50%;
    animation: spin-b-88eyv5ex6f 0.8s linear infinite;
}

@keyframes spin-b-88eyv5ex6f {
    to {
        transform: rotate(360deg);
    }
}

/* Error */
.error-container[b-88eyv5ex6f] {
    padding: 2rem;
    text-align: center;
}

.error-msg[b-88eyv5ex6f] {
    color: #dc3545;
}

.fiche-paper[b-88eyv5ex6f] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.35rem 1.35rem 1.1rem;
    box-shadow: none;
}

.fiche-heading[b-88eyv5ex6f] {
    padding-bottom: 0.95rem;
}

.fiche-heading h1[b-88eyv5ex6f] {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    line-height: 1.24;
    color: #1f2937;
}

.fiche-meta[b-88eyv5ex6f] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    margin-top: 0.45rem;
    color: #6b7280;
    font-size: 0.83rem;
}

.fiche-meta span[b-88eyv5ex6f] {
    position: relative;
}

.fiche-meta span+span[b-88eyv5ex6f]::before {
    content: "•";
    position: absolute;
    left: -0.55rem;
    color: #cbd5e1;
}

.section-block[b-88eyv5ex6f] {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 0.15rem;
}

.section-block h2[b-88eyv5ex6f] {
    margin: 0 0 0.7rem;
    font-size: 0.98rem;
    color: #374151;
    font-weight: 700;
}

.detail-table[b-88eyv5ex6f] {
    display: flex;
    flex-direction: column;
}

.detail-row[b-88eyv5ex6f] {
    display: grid;
    grid-template-columns: minmax(220px, 300px) 1fr;
    gap: 1rem;
    padding: 0.58rem 0;
}

.detail-label[b-88eyv5ex6f] {
    color: #6b7280;
    font-size: 0.88rem;
    font-weight: 600;
}

.detail-value[b-88eyv5ex6f] {
    color: #1f2937;
    min-width: 0;
    font-size: 0.9rem;
}

.text-value[b-88eyv5ex6f],
.empty-value[b-88eyv5ex6f] {
    line-height: 1.5;
}

.empty-value[b-88eyv5ex6f] {
    color: #94a3b8;
}

.detail-value[b-88eyv5ex6f]  .people-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.detail-value[b-88eyv5ex6f]  .person-chip {
    display: inline-flex;
    align-items: center;
    margin-right: 4px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.detail-value[b-88eyv5ex6f]  .person-name {
    display: inline-block;
    white-space: nowrap;
}

.person-avatar[b-88eyv5ex6f] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tone-0[b-88eyv5ex6f] {
    background: #2563eb;
}

.tone-1[b-88eyv5ex6f] {
    background: #ea580c;
}

.tone-2[b-88eyv5ex6f] {
    background: #7c3aed;
}

.tone-3[b-88eyv5ex6f] {
    background: #0891b2;
}

.tone-4[b-88eyv5ex6f] {
    background: #4f46e5;
}

.tone-5[b-88eyv5ex6f] {
    background: #db2777;
}

.section-content[b-88eyv5ex6f] {
    color: #334155;
    line-height: 1.55;
    font-size: 0.9rem;
}

.section-content[b-88eyv5ex6f] > :first-child {
    margin-top: 0;
}

.section-content[b-88eyv5ex6f] > :last-child {
    margin-bottom: 0;
}

.section-content[b-88eyv5ex6f]  p {
    margin: 0 0 0.9rem;
}

.section-content[b-88eyv5ex6f]  ul,
.section-content[b-88eyv5ex6f]  ol {
    margin: 0 0 0.9rem;
    padding-left: 1.35rem;
}

.section-content[b-88eyv5ex6f]  li+li {
    margin-top: 0.3rem;
}

.section-content[b-88eyv5ex6f]  h2,
.section-content[b-88eyv5ex6f]  h3,
.section-content[b-88eyv5ex6f]  h4,
.section-content[b-88eyv5ex6f]  h5,
.section-content[b-88eyv5ex6f]  h6 {
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
    color: #1e293b;
}

.section-content[b-88eyv5ex6f]  a {
    color: #0f766e;
    text-decoration: underline;
}

.section-content[b-88eyv5ex6f]  code {
    font-family: Consolas, 'Courier New', monospace;
    font-size: 0.85em;
    background: #eef6f5;
    color: #164e63;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

.section-content[b-88eyv5ex6f]  .rich-table-wrapper {
    overflow-x: auto;
    margin: 0;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    background: #fff;
}

.section-content[b-88eyv5ex6f]  .rich-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 720px;
    font-size: 0.8rem;
}

.section-content[b-88eyv5ex6f]  .rich-table th,
.section-content[b-88eyv5ex6f]  .rich-table td {
    padding: 0.6rem 0.7rem;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}

.section-content[b-88eyv5ex6f]  .rich-table th:last-child,
.section-content[b-88eyv5ex6f]  .rich-table td:last-child {
    border-right: none;
}

.section-content[b-88eyv5ex6f]  .rich-table tbody tr:last-child td {
    border-bottom: none;
}

.section-content[b-88eyv5ex6f]  .rich-table th {
    background: #f5eed0;
    color: #4b5563;
    font-weight: 700;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.table-section.environments .section-content[b-88eyv5ex6f]  .rich-table th {
    background: #f6e9bf;
    color: #6b4f00;
}

.table-section.flows .section-content[b-88eyv5ex6f]  .rich-table th {
    background: #dff2e6;
    color: #23543f;
}

.section-content[b-88eyv5ex6f]  .rich-table tbody tr:nth-child(even) {
    background: #fbfcfd;
}

.section-content[b-88eyv5ex6f]  .rich-table tbody tr:hover {
    background: #f8fafc;
}

.section-content[b-88eyv5ex6f]  .adf-status {
    display: inline-block;
    padding: 0.12rem 0.42rem;
    border-radius: 4px;
    font-size: 0.68rem;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.section-content[b-88eyv5ex6f]  .adf-status-green {
    background: #36b37e;
    color: #fff;
}

.section-content[b-88eyv5ex6f]  .adf-status-yellow {
    background: #ff991f;
    color: #fff;
}

.section-content[b-88eyv5ex6f]  .adf-status-red {
    background: #ff5630;
    color: #fff;
}

.section-content[b-88eyv5ex6f]  .adf-status-blue {
    background: #0065ff;
    color: #fff;
}

.section-content[b-88eyv5ex6f]  .adf-status-neutral {
    background: #6b778c;
    color: #fff;
}

.btn[b-88eyv5ex6f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    padding: 0.42rem 0.82rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.btn:hover[b-88eyv5ex6f] {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-primary[b-88eyv5ex6f] {
    background: #0f766e;
    color: white;
}

.btn-outline-secondary[b-88eyv5ex6f] {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #475569;
}

.btn-outline-secondary:hover[b-88eyv5ex6f] {
    background: #f8fafc;
    color: #0f172a;
}

@media (max-width: 900px) {
    .page-header[b-88eyv5ex6f] {
        flex-direction: column;
    }

    .detail-row[b-88eyv5ex6f] {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
}

@media (max-width: 640px) {
    .page-container[b-88eyv5ex6f] {
        padding: 1rem;
    }

    .fiche-paper[b-88eyv5ex6f] {
        padding: 1rem;
    }

    .people-list[b-88eyv5ex6f] {
        gap: 0.45rem;
    }
}
/* /Components/Pages/Urba/FichesApplicatifs.razor.rz.scp.css */
.page-container[b-dzy4j56hcx] {
    padding: 1.5rem;
    max-width: 1480px;
    margin: 0 auto;
    color: #1f2937;
}

.page-header[b-dzy4j56hcx] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-header h1[b-dzy4j56hcx] {
    margin: 0;
    font-size: 1.75rem;
    color: #14213d;
}

.page-subtitle[b-dzy4j56hcx] {
    margin: 0.35rem 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Loading */
.loading-container[b-dzy4j56hcx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    gap: 1rem;
}

.spinner[b-dzy4j56hcx] {
    width: 40px;
    height: 40px;
    border: 4px solid #d7dee7;
    border-top-color: #0f766e;
    border-radius: 50%;
    animation: spin-b-dzy4j56hcx 0.8s linear infinite;
}

@keyframes spin-b-dzy4j56hcx {
    to {
        transform: rotate(360deg);
    }
}

/* Error */
.error-container[b-dzy4j56hcx] {
    padding: 2rem;
    text-align: center;
}

.error-msg[b-dzy4j56hcx] {
    color: #dc3545;
}

.filter-section[b-dzy4j56hcx] {
    margin-bottom: 1rem;
    border: 1px solid #d7dee7;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.filter-toggle[b-dzy4j56hcx] {
    width: 100%;
    padding: 0.95rem 1.15rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f5efe4 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    transition: background 0.2s;
}

.filter-toggle:hover[b-dzy4j56hcx] {
    background: linear-gradient(135deg, #f1f5f9 0%, #efe7d8 100%);
}

.chevron[b-dzy4j56hcx] {
    font-size: 0.8rem;
}

.filter-count[b-dzy4j56hcx] {
    background: #0f766e;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.filter-panel[b-dzy4j56hcx] {
    padding: 1rem 1.15rem 1.15rem;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.filter-row[b-dzy4j56hcx] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.filter-group[b-dzy4j56hcx] {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.filter-group label[b-dzy4j56hcx] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.filter-group .form-control[b-dzy4j56hcx] {
    width: 100%;
    padding: 0.52rem 0.7rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.9rem;
    background: #fff;
}

.filter-full-title[b-dzy4j56hcx] {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table-info[b-dzy4j56hcx] {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 0.85rem;
}

.table-shell[b-dzy4j56hcx] {
    border: 1px solid #d8e1df;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.table-wrapper[b-dzy4j56hcx] {
    overflow-x: auto;
}

.data-table[b-dzy4j56hcx] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    background: #fff;
}

.data-table thead[b-dzy4j56hcx] {
    background: #f8fafc;
    position: sticky;
    top: 0;
    z-index: 1;
}

.data-table th[b-dzy4j56hcx] {
    padding: 0.9rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #dbe2ea;
    white-space: nowrap;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table td[b-dzy4j56hcx] {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid #edf2f7;
    vertical-align: top;
}

.data-table tbody tr:hover[b-dzy4j56hcx] {
    background: #f8fafc;
}

.col-summary[b-dzy4j56hcx] {
    width: 31%;
}

.summary-cell[b-dzy4j56hcx] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.summary-title[b-dzy4j56hcx] {
    color: #0f172a;
    font-weight: 600;
    line-height: 1.35;
}

.summary-key[b-dzy4j56hcx] {
    color: #0f766e;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.summary-key:hover[b-dzy4j56hcx] {
    text-decoration: underline;
}

.col-domain[b-dzy4j56hcx] {
    width: 20%;
}

.badge-list[b-dzy4j56hcx] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.domain-badge[b-dzy4j56hcx] {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: #f3eadb;
    color: #7c4a03;
    font-size: 0.78rem;
    font-weight: 600;
}

.col-type[b-dzy4j56hcx] {
    width: 16%;
    color: #1e293b;
    font-weight: 500;
}

.col-description[b-dzy4j56hcx] {
    width: 25%;
}

.description-snippet[b-dzy4j56hcx] {
    color: #475569;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.col-actions[b-dzy4j56hcx] {
    width: 8%;
    text-align: right;
    white-space: nowrap;
}

.placeholder-value[b-dzy4j56hcx] {
    color: #94a3b8;
}

.text-center[b-dzy4j56hcx] {
    text-align: center;
    color: #64748b;
    padding: 2rem !important;
}

.btn[b-dzy4j56hcx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.42rem 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.btn:hover[b-dzy4j56hcx] {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-primary[b-dzy4j56hcx] {
    background: #0f766e;
    color: white;
}

.btn-secondary[b-dzy4j56hcx] {
    background: #64748b;
    color: white;
}

.btn-sm[b-dzy4j56hcx] {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
}

.btn-outline-secondary[b-dzy4j56hcx] {
    background: transparent;
    border: 1px solid #94a3b8;
    color: #475569;
}

.btn-outline-secondary:hover[b-dzy4j56hcx] {
    background: #f8fafc;
    color: #0f172a;
}

@media (max-width: 960px) {
    .page-header[b-dzy4j56hcx] {
        flex-direction: column;
    }

    .col-summary[b-dzy4j56hcx],
    .col-domain[b-dzy4j56hcx],
    .col-type[b-dzy4j56hcx],
    .col-description[b-dzy4j56hcx] {
        width: auto;
    }

    .col-actions[b-dzy4j56hcx] {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .page-container[b-dzy4j56hcx] {
        padding: 1rem;
    }

    .filter-panel[b-dzy4j56hcx] {
        padding: 0.9rem;
    }

    .data-table th[b-dzy4j56hcx],
    .data-table td[b-dzy4j56hcx] {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .table-shell[b-dzy4j56hcx] {
        border-radius: 16px;
    }
}
/* /Components/Shared/AutocompleteSelect.razor.rz.scp.css */
.autocomplete-container[b-bm3x0ygisu] {
    position: relative;
    display: inline-block;
    min-width: 120px;
    max-width: 160px;
}

.autocomplete-input[b-bm3x0ygisu] {
    width: 100%;
    padding: 5px 24px 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    background: white;
    box-sizing: border-box;
}

.autocomplete-input:focus[b-bm3x0ygisu] {
    outline: none;
    border-color: #4a90d9;
    box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
}

.autocomplete-input.open[b-bm3x0ygisu] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.autocomplete-clear[b-bm3x0ygisu] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.autocomplete-clear:hover[b-bm3x0ygisu] {
    color: #333;
}

.autocomplete-dropdown[b-bm3x0ygisu] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    min-width: 180px;
    overflow-y: auto;
    background: white;
    border: 1px solid #4a90d9;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.autocomplete-item[b-bm3x0ygisu] {
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item:last-child[b-bm3x0ygisu] {
    border-bottom: none;
}

.autocomplete-item:hover[b-bm3x0ygisu],
.autocomplete-item.highlighted[b-bm3x0ygisu] {
    background: #f0f7ff;
}

.autocomplete-more[b-bm3x0ygisu] {
    padding: 4px 8px;
    font-size: 10px;
    color: #888;
    font-style: italic;
    background: #f9f9f9;
    text-align: center;
}

/* /Components/Shared/KanbanBoard.razor.rz.scp.css */
/* ── Container ── */
.kanban-container[b-r5cd4lgo3n] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    min-height: 0;
    font-family: inherit;
    padding: 0 8px 8px;
}

/* ── Filters ── */
.kanban-filters[b-r5cd4lgo3n] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    padding: 8px 0;
    border-bottom: 1px solid #dde1e7;
    background: #fff;
    z-index: 10;
}

.kanban-filters .filter-group[b-r5cd4lgo3n] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.kanban-filters .filter-group label[b-r5cd4lgo3n] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
}

.kanban-count[b-r5cd4lgo3n] {
    margin-left: auto;
    font-size: 0.82rem;
    color: #666;
}

.filter-actions[b-r5cd4lgo3n] {
    display: flex;
    align-items: center;
}

.btn-reset-filters[b-r5cd4lgo3n] {
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.78rem;
    cursor: pointer;
    color: #555;
    transition: background 0.15s;
}

.btn-reset-filters:hover[b-r5cd4lgo3n] {
    background: #f0f0f0;
}

/* ── Board ── */
.kanban-top-scroll[b-r5cd4lgo3n] {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 2px;
}

.kanban-top-scroll-track[b-r5cd4lgo3n] {
    height: 1px;
}

.kanban-board-scroll[b-r5cd4lgo3n] {
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    min-height: 0;
    padding: 8px 0 4px;
}

.kanban-board[b-r5cd4lgo3n] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: max-content;
    min-width: 100%;
}

/* ── Column ── */
.kanban-column[b-r5cd4lgo3n] {
    min-width: 230px;
    max-width: 260px;
    flex-shrink: 0;
    background: #f4f5f7;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kanban-column-header[b-r5cd4lgo3n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    background: #e6e8ed;
    border-bottom: 1px solid #d0d3da;
}

.kanban-column-title[b-r5cd4lgo3n] {
    font-size: 0.78rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kanban-column-count[b-r5cd4lgo3n] {
    font-size: 0.75rem;
    background: #fff;
    border-radius: 10px;
    padding: 1px 7px;
    color: #666;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 6px;
}

.kanban-column-body[b-r5cd4lgo3n] {
    flex: 1;
    overflow-y: auto;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ── Card ── */
.kanban-card[b-r5cd4lgo3n] {
    background: #fff;
    border-radius: 4px;
    padding: 8px 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    cursor: pointer;
    border-left: 3px solid #4a90d9;
    transition: box-shadow 0.15s, transform 0.1s;
}

.kanban-card:hover[b-r5cd4lgo3n] {
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

.kanban-card-title[b-r5cd4lgo3n] {
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.kanban-card-key[b-r5cd4lgo3n] {
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.kanban-card-key a[b-r5cd4lgo3n] {
    color: #0052cc;
    text-decoration: none;
}

.kanban-card-key a:hover[b-r5cd4lgo3n] {
    text-decoration: underline;
}

.kanban-card-field[b-r5cd4lgo3n] {
    font-size: 0.72rem;
    color: #555;
    display: flex;
    gap: 4px;
    align-items: baseline;
    flex-wrap: wrap;
    margin-top: 2px;
}

.kanban-field-label[b-r5cd4lgo3n] {
    font-weight: 600;
    color: #444;
    flex-shrink: 0;
}

/* ── Modal ── */
.kanban-modal-backdrop[b-r5cd4lgo3n] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kanban-modal[b-r5cd4lgo3n] {
    background: #fff;
    border-radius: 8px;
    width: min(760px, 95vw);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    overflow: hidden;
}

.kanban-modal-header[b-r5cd4lgo3n] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #e0e0e0;
    background: #f7f8fa;
    gap: 12px;
}

.kanban-modal-title-row[b-r5cd4lgo3n] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kanban-modal-client-row[b-r5cd4lgo3n] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.kanban-modal-title-row h3[b-r5cd4lgo3n] {
    margin: 0;
    font-size: 1rem;
    color: #172b4d;
    line-height: 1.3;
}

.kanban-modal-key[b-r5cd4lgo3n] {
    font-size: 0.78rem;
    color: #0052cc;
    text-decoration: none;
}

.kanban-modal-key:hover[b-r5cd4lgo3n] {
    text-decoration: underline;
}

.kanban-modal-close[b-r5cd4lgo3n] {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #666;
    padding: 2px 6px;
    border-radius: 3px;
    flex-shrink: 0;
    transition: background 0.15s;
}

.kanban-modal-close:hover[b-r5cd4lgo3n] {
    background: #eee;
    color: #333;
}

.kanban-modal-body[b-r5cd4lgo3n] {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1;
}

.kanban-modal-fields[b-r5cd4lgo3n] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-bottom: 16px;
}

.kanban-modal-field[b-r5cd4lgo3n] {
    display: flex;
    gap: 6px;
    align-items: baseline;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.kanban-modal-field .kanban-field-label[b-r5cd4lgo3n] {
    font-weight: 600;
    color: #555;
    flex-shrink: 0;
}

.kanban-status-badge[b-r5cd4lgo3n] {
    background: #e8f0fe;
    color: #1a56db;
    border-radius: 3px;
    padding: 1px 7px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* PI badges */
.pi-planning-badges[b-r5cd4lgo3n] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pi-badge[b-r5cd4lgo3n] {
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 3px;
    padding: 1px 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* ── Description / Notes blocks ── */
.kanban-modal-text-block[b-r5cd4lgo3n] {
    margin-bottom: 14px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    padding: 10px 14px;
    background: #fafbfc;
}

.kanban-modal-text-block h5[b-r5cd4lgo3n] {
    margin: 0 0 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.kanban-modal-text-block p[b-r5cd4lgo3n] {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
    white-space: pre-wrap;
    line-height: 1.5;
}

.kanban-modal-groups[b-r5cd4lgo3n] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.kanban-badge-list[b-r5cd4lgo3n] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.kanban-info-badge[b-r5cd4lgo3n] {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eef3f8;
    color: #30506f;
    font-size: 0.76rem;
    font-weight: 600;
}

/* ── Stories table ── */
.kanban-modal-stories h4[b-r5cd4lgo3n] {
    font-size: 0.88rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
    border-top: 1px solid #e8e8e8;
    padding-top: 12px;
}

.kanban-stories-table[b-r5cd4lgo3n] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.kanban-stories-table th[b-r5cd4lgo3n] {
    background: #f0f1f3;
    padding: 6px 8px;
    text-align: left;
    font-weight: 600;
    color: #444;
    border-bottom: 2px solid #dde1e7;
}

.kanban-stories-table td[b-r5cd4lgo3n] {
    padding: 5px 8px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: top;
}

.kanban-stories-table tr:last-child td[b-r5cd4lgo3n] {
    border-bottom: none;
}

.kanban-stories-table a[b-r5cd4lgo3n] {
    color: #0052cc;
    text-decoration: none;
    white-space: nowrap;
}

.kanban-stories-table a:hover[b-r5cd4lgo3n] {
    text-decoration: underline;
}

.kanban-no-stories[b-r5cd4lgo3n] {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
}

/* ── Client badge on card ── */
.kanban-card-client[b-r5cd4lgo3n] {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    padding: 2px 7px;
    margin: 3px 0 4px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Due date on card ── */
.kanban-card-duedate[b-r5cd4lgo3n] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #5b6680;
    margin: 0 0 3px;
    font-weight: 500;
}

.kanban-duedate-past[b-r5cd4lgo3n] {
    color: #C0392B;
    font-weight: 700;
}

@media (max-width: 720px) {
    .kanban-modal-fields[b-r5cd4lgo3n] {
        grid-template-columns: 1fr;
    }

    .kanban-modal[b-r5cd4lgo3n] {
        width: min(760px, calc(100vw - 24px));
        max-height: calc(100vh - 24px);
    }
}
/* /Components/Shared/MultiSelect.razor.rz.scp.css */
.multiselect-container[b-3o753vfn8m] {
    position: relative;
    display: inline-block;
    min-width: 120px;
    max-width: 160px;
}

.multiselect-input[b-3o753vfn8m] {
    width: 100%;
    padding: 5px 28px 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    background: white;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    min-height: 28px;
    user-select: none;
}

.multiselect-input:hover[b-3o753vfn8m] {
    border-color: #bbb;
}

.multiselect-input:focus-visible[b-3o753vfn8m] {
    border-color: #4a90d9;
    box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
    outline: none;
}

.multiselect-input.open[b-3o753vfn8m] {
    border-color: #4a90d9;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
}

.multiselect-placeholder[b-3o753vfn8m] {
    color: #999;
    font-style: italic;
}

.multiselect-value[b-3o753vfn8m] {
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.multiselect-tooltip-anchor[b-3o753vfn8m] {
    position: relative;
    display: inline-flex;
    min-width: 0;
    flex: 1;
}

.multiselect-tooltip-anchor[b-3o753vfn8m]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px);
    max-width: min(420px, 60vw);
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(34, 34, 34, 0.96);
    color: #fff;
    font-size: 11px;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease 1s, transform 0.15s ease 1s, visibility 0s linear 1s;
    pointer-events: none;
    z-index: 1002;
}

.multiselect-tooltip-anchor:hover[b-3o753vfn8m]::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.multiselect-arrow[b-3o753vfn8m] {
    position: absolute;
    right: 8px;
    font-size: 8px;
    color: #666;
    transition: transform 0.2s;
}

.multiselect-input.open .multiselect-arrow[b-3o753vfn8m] {
    transform: rotate(180deg);
}

.multiselect-clear[b-3o753vfn8m] {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    z-index: 1;
}

.multiselect-clear:hover[b-3o753vfn8m] {
    color: #333;
}

.multiselect-overlay[b-3o753vfn8m] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: transparent;
    cursor: default;
}

.multiselect-dropdown[b-3o753vfn8m] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #4a90d9;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.multiselect-search[b-3o753vfn8m] {
    padding: 6px;
    border-bottom: 1px solid #eee;
}

.multiselect-search input[b-3o753vfn8m] {
    width: 100%;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 11px;
    box-sizing: border-box;
}

.multiselect-search input:focus[b-3o753vfn8m] {
    outline: none;
    border-color: #4a90d9;
}

.multiselect-actions[b-3o753vfn8m] {
    padding: 4px 6px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}

.multiselect-action-btn[b-3o753vfn8m] {
    background: none;
    border: none;
    color: #4a90d9;
    font-size: 10px;
    cursor: pointer;
    padding: 2px 4px;
}

.multiselect-action-btn:hover[b-3o753vfn8m] {
    text-decoration: underline;
}

.multiselect-items[b-3o753vfn8m] {
    max-height: 200px;
    overflow-y: auto;
}

.multiselect-item[b-3o753vfn8m] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.multiselect-item:last-child[b-3o753vfn8m] {
    border-bottom: none;
}

.multiselect-item:hover[b-3o753vfn8m] {
    background: #f0f7ff;
}

.multiselect-item.selected[b-3o753vfn8m] {
    background: #e8f4ff;
}

.multiselect-item.keyboard-active[b-3o753vfn8m] {
    background: #dbeeff;
}

.multiselect-item.keyboard-active .multiselect-item-text[b-3o753vfn8m] {
    color: #1a3a52;
    font-weight: 600;
}

.multiselect-item input[type="checkbox"][b-3o753vfn8m] {
    margin: 0;
    cursor: pointer;
    accent-color: #4a90d9;
}

.multiselect-item-text[b-3o753vfn8m] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.multiselect-item-content[b-3o753vfn8m] {
    align-items: center;
}

.multiselect-more[b-3o753vfn8m] {
    padding: 4px 8px;
    font-size: 10px;
    color: #888;
    font-style: italic;
    background: #f9f9f9;
    text-align: center;
}

.multiselect-empty[b-3o753vfn8m] {
    padding: 12px 8px;
    font-size: 11px;
    color: #999;
    text-align: center;
    font-style: italic;
}
/* /Components/Tasks/TasksTable.razor.rz.scp.css */
.tasks-table-container[b-9505fef68s] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.tasks-table-header[b-9505fef68s] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e1e4e8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tasks-table-header h2[b-9505fef68s] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a3a52;
}

.tasks-table-controls[b-9505fef68s] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.filter-group[b-9505fef68s] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label[b-9505fef68s] {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}

.filter-select[b-9505fef68s] {
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 12px;
    background: white;
    min-width: 120px;
}

.filter-select-small[b-9505fef68s] {
    min-width: 80px;
}

.tasks-table-info[b-9505fef68s] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.row-count[b-9505fef68s] {
    font-size: 12px;
    font-weight: 500;
    color: #1a3a52;
    background: #e9f0f7;
    padding: 4px 10px;
    border-radius: 12px;
}

.last-update[b-9505fef68s] {
    font-size: 11px;
    color: #9ca3af;
}

.btn-refresh[b-9505fef68s],
.btn-export[b-9505fef68s] {
    padding: 6px 12px;
    font-size: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-refresh:hover[b-9505fef68s],
.btn-export:hover[b-9505fef68s] {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.btn-export[b-9505fef68s] {
    background: #1a3a52;
    color: white;
    border-color: #1a3a52;
}

.btn-export:hover[b-9505fef68s] {
    background: #0d2636;
}

.date-range-group[b-9505fef68s] {
    margin-left: 4px;
}

.date-input[b-9505fef68s] {
    padding: 4px 6px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    width: 115px;
    background: white;
}

.date-input:focus[b-9505fef68s] {
    outline: none;
    border-color: #4a90d9;
    box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.2);
}

/* Table wrapper */
.tasks-table-wrapper[b-9505fef68s] {
    flex: 1;
    overflow: auto;
    padding: 16px 20px;
}

/* Table */
.tasks-table[b-9505fef68s] {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 12px;
}

.tasks-table thead[b-9505fef68s] {
    position: sticky;
    top: 0;
    z-index: 10;
}

.tasks-table th[b-9505fef68s] {
    background: #1a3a52;
    color: white;
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid #0d2636;
}

.tasks-table td[b-9505fef68s] {
    padding: 8px 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.tasks-table tbody tr:hover[b-9505fef68s] {
    background: #f9fafb;
}

/* Row levels */
.row-level-0[b-9505fef68s] {
    background: #f0f4f8;
    font-weight: 600;
}

.row-level-0 td[b-9505fef68s] {
    border-bottom: 2px solid #1a3a52;
}

.row-level-1[b-9505fef68s] {
    background: #f8fafc;
}

.row-level-2[b-9505fef68s] {
    background: white;
}

.row-level-3[b-9505fef68s] {
    background: #fefefe;
    color: #4b5563;
}

/* Task cell */
.task-cell[b-9505fef68s] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-icon[b-9505fef68s] {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
}

.row-workflow-icon[b-9505fef68s] {
    width: 18px;
    min-width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.workflow-icon-emergence[b-9505fef68s] {
    color: #d19a00;
}

.workflow-icon-study[b-9505fef68s] {
    color: #46607a;
}

.workflow-icon-realization[b-9505fef68s] {
    color: #1f6fd1;
}

.workflow-icon-done[b-9505fef68s] {
    color: #1a8f53;
}

.task-link[b-9505fef68s] {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

.task-link:hover[b-9505fef68s] {
    color: #1a3a52;
}

.task-link:hover .task-key[b-9505fef68s] {
    text-decoration: underline;
}

.task-key[b-9505fef68s] {
    font-weight: 600;
    color: #4a90d9;
    white-space: nowrap;
}

.task-title[b-9505fef68s] {
    color: #374151;
}

.task-title-text[b-9505fef68s] {
    color: #374151;
}

/* Column widths */
.col-task[b-9505fef68s] {
    min-width: 300px;
}

.col-entite[b-9505fef68s],
.col-assignee[b-9505fef68s],
.col-porteur-ext[b-9505fef68s],
.col-type-travail[b-9505fef68s] {
    min-width: 120px;
    max-width: 150px;
}

.col-pi-planning[b-9505fef68s] {
    min-width: 130px;
    max-width: 180px;
}

/* PI Planning badges */
.pi-planning-badges[b-9505fef68s] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pi-badge[b-9505fef68s] {
    display: inline-block;
    padding: 2px 6px;
    background: #e0e7ff;
    color: #4338ca;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.col-start-date[b-9505fef68s],
.col-due-date[b-9505fef68s] {
    min-width: 90px;
    white-space: nowrap;
}

.col-progress[b-9505fef68s] {
    min-width: 100px;
}

.col-status[b-9505fef68s] {
    min-width: 100px;
}

.col-blocked-by[b-9505fef68s],
.col-blocks[b-9505fef68s] {
    min-width: 120px;
}

/* Due date overdue */
.col-due-date.overdue[b-9505fef68s] {
    color: #dc2626;
    font-weight: 500;
}

/* Progress cell */
.progress-cell[b-9505fef68s] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-bar[b-9505fef68s] {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    min-width: 50px;
}

.progress-fill[b-9505fef68s] {
    height: 100%;
    background: linear-gradient(90deg, #36b37e, #00875a);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text[b-9505fef68s] {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
}

/* Status badge */
.status-badge[b-9505fef68s] {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
}

/* Blocking links */
.blocking-links[b-9505fef68s] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.blocking-link[b-9505fef68s] {
    display: inline-block;
    padding: 2px 6px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.blocking-link:hover[b-9505fef68s] {
    background: #fecaca;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .tasks-table-controls[b-9505fef68s] {
        gap: 8px;
    }
    
    .filter-select[b-9505fef68s] {
        min-width: 100px;
    }
    
    .col-entite[b-9505fef68s],
    .col-assignee[b-9505fef68s],
    .col-porteur-ext[b-9505fef68s],
    .col-type-travail[b-9505fef68s] {
        min-width: 100px;
    }
}
