@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Acdm.UI.AirsideOptimizer.Shared.Auth/Acdm.UI.AirsideOptimizer.Shared.Auth.bundle.scp.css';
@import '_content/Acdm.UI.AirsideOptimizer.Shared.Components/Acdm.UI.AirsideOptimizer.Shared.Components.bundle.scp.css';

/* _content/Acdm.UI.AirsideOptimizer/MainLayout.razor.rz.scp.css */
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeiceForecating/DeicingForecatingHome.razor.rz.scp.css */
.header-container[b-r5oz88p4jk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background-color: var(--sita-off-white);
    flex-shrink: 0;
    border-bottom: none;
    box-shadow: inset 0 -2px 0 0 var(--primary-colours-sita-light-grey);
    margin-left: 19px;
    margin-right: 16px;
    padding-left: 0;
    padding-right: 0;
}

.container[b-r5oz88p4jk] {
    display: flex;
}

.left-section[b-r5oz88p4jk] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: -14px;
}

.fpl-toggle-btn[b-r5oz88p4jk] {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #005485;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    color: #005485;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .fpl-toggle-btn:hover[b-r5oz88p4jk] {
        background: #f0f8ff;
    }

    .fpl-toggle-btn.active[b-r5oz88p4jk] {
        background: #005485;
        color: #ffffff;
    }

        .fpl-toggle-btn.active .flight-plan-list[b-r5oz88p4jk] {
            color: #ffffff;
            background: transparent;
        }

        .fpl-toggle-btn.active .deicing-flight-list[b-r5oz88p4jk] {
            filter: none;
        }

.telerik-button[b-r5oz88p4jk] {
    background: #ffffff;
    border-radius: 4px;
    border-style: none;
    border-color: #005485;
    border-width: 1px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    left: 1258px;
    top: 100px;
}

.deicing-flight-list[b-r5oz88p4jk] {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: visible;
    display: inline-block;
}

.flight-plan-list[b-r5oz88p4jk] {
    text-align: left;
    font-family: var( --body-text-body-text-paragraph-font-family, "OpenSans-Regular", sans-serif );
    font-size: var(--body-text-body-text-paragraph-font-size, 14px);
    line-height: var(--body-text-body-text-paragraph-line-height, 20px);
    font-weight: var(--body-text-body-text-paragraph-font-weight, 400);
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: flex-start;
    color: #005485;
    background: transparent;
}

/* ── Override global .page-content for the DeIce page only ──
   The global site.css adds padding:1.5rem + overflow:auto which
   breaks the flex height chain needed for the Gantt + FPL layout. */
.page-content[b-r5oz88p4jk] {
    padding: 0 !important;
    overflow: hidden !important;
}

.header-container .telerik-button[b-r5oz88p4jk] {
    position: relative;
    left: auto;
    top: auto;
    margin-left: 8px;
}

.container[b-r5oz88p4jk] {
    display: flex;
}



/* ── Outer flex row: fills all remaining height below the page header ── */
.deice-body[b-r5oz88p4jk] {
    display: flex;
    flex-direction: row;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    background-color: #f4f4f4;
    gap: 6px;
    margin-left: 19px;
    margin-right: 16px;
}

/* ── Left column: toolbar on top, gantt chart below, shrinks when FPL opens ── */
.deice-left[b-r5oz88p4jk] {
    display: flex;
    flex-direction: column;
    flex: 1; /* takes all width not consumed by the side panel */
    min-width: 0; /* allows shrinking below natural content width */
    min-height: 0;
    overflow: hidden;
}

/* ── Gantt chart area ── */
.deice-main-content[b-r5oz88p4jk] {
    flex: 1;
    overflow: auto;
    min-height: 0;
}

/* ── Right side panel: fixed width, full height of deice-body ── */
.deice-side-panel[b-r5oz88p4jk] {
    width: 427px;
    flex-shrink: 0; /* never compresses — left column absorbs the change */
    border-left: 1px solid #ddd;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
    transition: width 0.3s ease;
    margin-top: 8px;
}

    .deice-side-panel.fullscreen-override[b-r5oz88p4jk] {
        position: fixed;
        top: -8px;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        border: none;
    }

/* ── Fullscreen: cover entire viewport, sit above app shell (topbar + sidebar) ── */
.deice-fullscreen[b-r5oz88p4jk] {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--sita-off-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: unset !important;
    padding: 14px 24px !important;
    animation: fullscreen-in-b-r5oz88p4jk 0.3s ease;
}

/* ── Smooth enter animation when going fullscreen ── */
@keyframes fullscreen-in-b-r5oz88p4jk {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── Smooth exit animation when leaving fullscreen ── */
.deice-fullscreen-exit[b-r5oz88p4jk] {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: unset !important;
    padding: 0 !important;
    animation: fullscreen-out-b-r5oz88p4jk 0.3s ease forwards;
}

@keyframes fullscreen-out-b-r5oz88p4jk {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.97);
    }
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingClipBoard.razor.rz.scp.css */
/* ── Outer wrapper ──────────────────────────────────────────────────────── */
.clipboard-wrapper[b-lksfrzrim4] {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--primary-colours-sita-white, #ffffff);
    border-top: 2px solid var(--primary-colours-sita-light-grey, #ddd);
    flex-shrink: 0;
}

/* ── Header bar ─────────────────────────────────────────────────────────── */
.clipboard-header[b-lksfrzrim4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    height: 36px;
    background-color: var(--primary-colours-sita-light-blue);
    color: var(--primary-colours-sita-white, #ffffff);
    font-family: var(--links-and-action-tab-menu-active-font-family, "Inter-Bold", sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
    user-select: none;
}

.clipboard-title[b-lksfrzrim4] {
    pointer-events: none;
}

.clipboard-close[b-lksfrzrim4] {
    background: transparent;
    border: none;
    color: var(--primary-colours-sita-white, #ffffff);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

    .clipboard-close:hover[b-lksfrzrim4] {
        background: rgba(255, 255, 255, 0.22);
    }

.clipboard-close-icon[b-lksfrzrim4] {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    display: block;
}

/* ── Body row: mirrors .planner-body-row so clipboard aligns with the gantt ── */
.clipboard-body-row[b-lksfrzrim4] {
    display: flex;
    flex-direction: row;
    flex: 1;
    overflow: hidden;
}

/* Left / right spacers — same width as .left-columns / .right-columns (110 px) */
.cb-left-spacer[b-lksfrzrim4],
.cb-right-spacer[b-lksfrzrim4] {
    width: 110px;
    flex-shrink: 0;
    background: var(--primary-colours-sita-lighter-grey, #fafafa);
}

.cb-left-spacer[b-lksfrzrim4] {
    border-right: 1px solid var(--primary-colours-sita-lightest-grey, #e3e8ef);
}

.cb-right-spacer[b-lksfrzrim4] {
    border-left: 1px solid var(--primary-colours-sita-lightest-grey, #e3e8ef);
}

/* ── Body ───────────────────────────────────────────────────────────────── */
.clipboard-body[b-lksfrzrim4] {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 124px;
    overflow: hidden;
    background: var(--primary-colours-sita-lighter-grey, #fafafa);
    /* Markers (.marker) are absolute children of clipboard-body */
}

/* ── Time header ────────────────────────────────────────────────────────── */
.cb-time-header[b-lksfrzrim4] {
    position: relative;
    height: 20px;
    background: var(--primary-colours-sita-lightest-grey, #f0f0f0);
    border-bottom: 1px solid var(--primary-colours-sita-light-grey, #ddd);
    flex-shrink: 0;
    overflow: hidden;
}

.cb-time-cell[b-lksfrzrim4] {
    position: absolute;
    left: var(--cb-slot-left, 0%);
    width: var(--cb-slot-width, 0%);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 4px;
    box-sizing: border-box;
}

.cb-time-label[b-lksfrzrim4] {
    font-size: 10px;
    color: var(--primary-colours-sita-grey, #666);
    white-space: nowrap;
    font-family: "OpenSans-Regular", sans-serif;
}

/* ── Drop zone ──────────────────────────────────────────────────────────── */
.cb-drop-zone[b-lksfrzrim4] {
    position: relative;
    height: 96px;
    flex: 1;
    background: var(--primary-colours-sita-white, #ffffff);
    transition: background 0.15s ease;
}

    .cb-drop-zone:hover[b-lksfrzrim4] {
        background: var(--primary-colours-iceberg-blue, #f5fbff);
    }

/* ── Grid lines ─────────────────────────────────────────────────────────── */
.cb-grid-line[b-lksfrzrim4] {
    position: absolute;
    left: var(--cb-grid-left, 0%);
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--primary-colours-sita-lightest-grey, #e4e4e4);
    pointer-events: none;
}

/* ── Timeline markers (current-time + planning-horizon) ─────────────────── */
/* Markers are direct children of .clipboard-body (position:relative),       */
/* so top:0/bottom:0 spans the full clipboard height — same as the gantt.    */
.marker[b-lksfrzrim4] {
    position: absolute;
    left: var(--cg-marker-left, 0%);
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 20;
    pointer-events: none;
}

.current-time-line[b-lksfrzrim4] {
    background: var(--primary-colours-red, #d33);
}

    .current-time-line[b-lksfrzrim4]::before {
        content: "";
        position: absolute;
        right: 2px;
        top: 0;
        bottom: 0;
        width: 400px;
        background: linear-gradient(to left, rgba(198,29,35,0.06), transparent);
        pointer-events: none;
    }

.planning-horizon-line[b-lksfrzrim4] {
    background: #f5c542;
}

    .planning-horizon-line[b-lksfrzrim4]::after {
        content: "";
        position: absolute;
        left: 2px;
        top: 0;
        bottom: 0;
        width: 400px;
        background: linear-gradient(to right, rgba(245,197,66,0.08), transparent);
        pointer-events: none;
    }

/* ── Task pills ─────────────────────────────────────────────────────────── */
.cb-task-pill[b-lksfrzrim4] {
display: flex;
align-items: center;
border-radius: 3px;
cursor: grab;
    overflow: hidden;
    padding: 0 6px;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
    transition: opacity 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

    .cb-task-pill:active[b-lksfrzrim4] {
        cursor: grabbing;
        opacity: 0.75;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.20);
    }

    .cb-task-pill:hover[b-lksfrzrim4] {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    }

.cb-pill-label[b-lksfrzrim4] {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-colours-sita-black, #333);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    flex: 1;
}

/* ── Per-pill remove (×) button ─────────────────────────────────────────── */
.cb-pill-remove[b-lksfrzrim4] {
    background: transparent;
    border: none;
    color: var(--primary-colours-sita-grey, #555);
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
    margin-left: 4px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.cb-task-pill:hover .cb-pill-remove[b-lksfrzrim4] {
    opacity: 1;
}

.cb-pill-remove:hover[b-lksfrzrim4] {
    color: var(--primary-colours-red, #c00);
}

/* ── Empty state hint ───────────────────────────────────────────────────── */
.cb-empty-hint[b-lksfrzrim4] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

    .cb-empty-hint span[b-lksfrzrim4] {
        font-size: 12px;
        color: var(--primary-colours-sita-light-grey, #aaa);
        font-style: italic;
        font-family: "OpenSans-Regular", sans-serif;
        user-select: none;
    }

/* ── Task-pill tooltip (mirrors DeicingPlanningGanttChart) ──────────────── */
.cg-tooltip-overlay[b-lksfrzrim4] {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.cg-tooltip-arrow[b-lksfrzrim4] {
    width: 12px;
    height: 20px;
    margin-top: 16px;
    flex-shrink: 0;
}

.cg-tooltip-content[b-lksfrzrim4] {
    background: var(--primary-colours-sita-white, #ffffff);
    border: 1px solid var(--primary-colours-sita-light-grey, #d0d0d0);
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    padding: 12px 14px;
    min-width: 260px;
    max-width: 340px;
    font-size: 13px;
    line-height: 1.5;
}

.cg-tooltip-row[b-lksfrzrim4] {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
}

.cg-tooltip-label[b-lksfrzrim4] {
    font-weight: 700;
    white-space: nowrap;
    color: var(--primary-colours-sita-black, #111);
}

.cg-tooltip-value[b-lksfrzrim4] {
    color: var(--primary-colours-sita-black, #333);
    word-break: break-word;
}

.cg-tooltip-divider[b-lksfrzrim4] {
    border: none;
    border-top: 1px solid var(--primary-colours-sita-lightest-grey, #e0e0e0);
    margin: 8px 0;
}


/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingFpl.razor.rz.scp.css */
/* --- Panel container --------------------------------------- */
.fpl-container[b-gp85slsjye] {
    position: relative; /* required for the spinner overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f4f6f8;
    border-radius: 0;
    /* overflow: visible so the fixed-position tooltip is not masked */
    overflow: visible;
}

    .fpl-container.fullscreen[b-gp85slsjye] {
        height: 100vh;
        width: 100vw;
    }

/* --- Toolbar block ----------------------------------------- */
.fpl-toolbar[b-gp85slsjye] {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: none;
    background: #fff;
}

.fpl-toolbar-title-row[b-gp85slsjye] {
    display: flex;
    align-items: center;
    padding: 14px 16px 10px 16px;
}

.fpl-toolbar--fullscreen[b-gp85slsjye] {
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e8ecef;
    gap: 10px;
    background: #fff;
}

.fpl-toolbar-spacer[b-gp85slsjye] {
    flex: 1;
}

/* --- Title ------------------------------------------------- */
.fpl-title[b-gp85slsjye] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    white-space: nowrap;
}

/* --- Controls row ------------------------------------------ */
.fpl-controls[b-gp85slsjye] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 12px 16px;
    background: #fff;
}

.fpl-toolbar--fullscreen .fpl-controls[b-gp85slsjye] {
    padding: 0;
    flex-shrink: 0;
}

.fpl-toolbar--fullscreen .search-container[b-gp85slsjye] {
    max-width: 280px;
}

/* Search box */
.search-container[b-gp85slsjye] {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 36px;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

    .search-container[b-gp85slsjye]  .k-input,
    .search-container[b-gp85slsjye]  .k-textbox {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding-right: 32px;
        font-size: 13px;
    }

.search-icon[b-gp85slsjye] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    color: #888;
}

    .search-icon img[b-gp85slsjye] {
        width: 16px;
        height: 16px;
    }

/* Icon buttons */
.fpl-icon-btn[b-gp85slsjye],
.fpl-icon-btn-full[b-gp85slsjye] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    outline: none;
}

    .fpl-icon-btn:hover[b-gp85slsjye],
    .fpl-icon-btn-full:hover[b-gp85slsjye] {
        background: #f0f4f8;
    }

    .fpl-icon-btn:focus-visible[b-gp85slsjye],
    .fpl-icon-btn-full:focus-visible[b-gp85slsjye] {
        outline: 2px solid #005485;
        outline-offset: 2px;
    }

    .fpl-icon-btn:focus:not(:focus-visible)[b-gp85slsjye],
    .fpl-icon-btn-full:focus:not(:focus-visible)[b-gp85slsjye] {
        outline: none;
        box-shadow: none;
    }

    .fpl-icon-btn img[b-gp85slsjye],
    .fpl-icon-btn-full img[b-gp85slsjye] {
        width: 18px;
        height: 18px;
        display: block;
    }

    .fpl-icon-btn .icon[b-gp85slsjye],
    .fpl-icon-btn-full .icon[b-gp85slsjye] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* --- Scrollable flight list -------------------------------- */
.fpl-columns-wrap[b-gp85slsjye] {
    flex: 1;
    overflow-y: auto;
    overflow-x: visible;
    padding: 6px 10px;
    scrollbar-width: none;
}

    .fpl-columns-wrap[b-gp85slsjye]::-webkit-scrollbar {
        display: none;
    }

/* Box wrapper shown only in normal (non-fullscreen) mode */
.fpl-container:not(.fullscreen) .fpl-columns-wrap[b-gp85slsjye] {
    padding: 8px 10px 10px 10px;
}

.fpl-container:not(.fullscreen) .fpl-columns[b-gp85slsjye] {
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 6px 0;
    min-height: 100%;
}

/* Fullscreen: columns sit side-by-side with a gap */
.fpl-container.fullscreen .fpl-columns-wrap[b-gp85slsjye] {
    padding: 12px 16px;
}

.fpl-container.fullscreen .fpl-columns[b-gp85slsjye] {
    gap: 12px;
}

.fpl-column[b-gp85slsjye] {
    background: transparent;
    width: 100%;
    max-width: 435px;
    min-width: 260px;
    box-sizing: border-box;
    padding: 0 6px;
}

/* Fullscreen: each column gets its own card box */
.fpl-container.fullscreen .fpl-column[b-gp85slsjye] {
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 6px 0;
    align-self: flex-start;
}

/* Strip all Telerik ListView chrome � overflow:visible so tooltip escapes */
.fpl-column[b-gp85slsjye]  .k-listview,
.fpl-column[b-gp85slsjye]  .k-listview-content {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.fpl-column[b-gp85slsjye]  .k-listview-item {
    padding: 0 !important;
    margin: 0 0 6px 0 !important;
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
}

    /* Alternating row background: odd = white, even = light grey */
    .fpl-column[b-gp85slsjye]  .k-listview-item:nth-child(odd) .fpl-row {
        background: #f2f4f6;
    }

        .fpl-column[b-gp85slsjye]  .k-listview-item:nth-child(odd) .fpl-row > * {
            background: #f2f4f6;
        }

    .fpl-column[b-gp85slsjye]  .k-listview-item:nth-child(even) .fpl-row {
        background: #ffffff;
    }

        .fpl-column[b-gp85slsjye]  .k-listview-item:nth-child(even) .fpl-row > * {
            background: #ffffff;
        }

/* --- Individual flight row � card style -------------------- */
.fpl-row[b-gp85slsjye] {
    display: grid;
    grid-template-columns: 68px 4fr 44px 89px auto;
    align-items: stretch;
    padding: 0;
    background: #fff;
    border-radius: 6px;
    gap: 0;
    cursor: pointer;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
    min-width: 0;
    /* overflow visible so tooltip is not clipped */
    overflow: visible;
}

    .fpl-row > *[b-gp85slsjye] {
        background: inherit;
    }

    .fpl-row:hover[b-gp85slsjye] {
        border-color: #b0c4d8;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

/* ?? fpl-row-info: groups the 4 data columns visually, no pointer events interference ?? */
.fpl-row-info[b-gp85slsjye] {
    display: contents;
}

/* time column */
.fpl-time[b-gp85slsjye] {
    font-weight: 700;
    color: #111;
    font-size: 14px;
    white-space: nowrap;
    padding: 14px 6px 14px 14px;
}

    /* red time = overdue */
    .fpl-time.late[b-gp85slsjye] {
        color: #111;
    }

/* flight id column */
.fpl-flight-id[b-gp85slsjye] {
    font-size: 12px;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 14px 0px;
}

/* aircraft type column */
.fpl-ac-type[b-gp85slsjye] {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    padding: 14px 2px;
    text-align: center;
}

/* stand column */
.fpl-stand[b-gp85slsjye] {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    padding: 14px 4px;
    text-align: center;
}

/* RIC / ICE action area � right-aligned, never wraps */
.fpl-actions[b-gp85slsjye] {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 6px 10px 6px 6px;
}

/* Grouped pill container (kept for backward compat) */
.pill-group[b-gp85slsjye] {
    display: flex;
    flex-direction: row;
    border: 1px solid #b0c8d8;
    border-radius: 6px;
    overflow: hidden;
}

/* Split container: two half-width buttons side by side */
.pill-split[b-gp85slsjye] {
    display: flex;
    flex-direction: row;
    width: 107px;
    height: 48px;
    border-radius: 0px;
    overflow: hidden;
    border: 0px solid #005485;
    border-radius: 4px;
    gap: 0;
    flex-shrink: 0;
}

/* Half-width button inside a split container */
.pill-half[b-gp85slsjye] {
    font-size: 12px;
    font-weight: 700;
    flex: 1;
    width: 0;
    height: 100%;
    cursor: pointer;
    border: none;
    line-height: 1;
    outline: none;
    padding: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.4px;
    transition: background 0.15s ease;
}

    .pill-half:not(:last-child)[b-gp85slsjye] {
        border-right: 1px solid #005485;
    }

    .pill-half:focus:not(:focus-visible)[b-gp85slsjye] {
        outline: none;
        box-shadow: none;
    }

    .pill-half:focus-visible[b-gp85slsjye] {
        outline: 2px solid #005485;
        outline-offset: 2px;
    }

/* Grey variant for None state */
.pill-half--grey[b-gp85slsjye] {
    background: #f3f4f6;
    color: #6b7280;
}

    .pill-half--grey:hover[b-gp85slsjye] {
        background: #e5e7eb;
    }

/* Green variant � RIC active (Pad state) */
.pill-half--red[b-gp85slsjye] {
    background: #bbf7d0;
    color: var(--primary-colours-sita-blue, #005485);
}

    .pill-half--red:hover[b-gp85slsjye] {
        background: #86efac;
    }

/* Striped green variant � RIC active with a DeicingProcedureName set */
.pill-half--red-striped[b-gp85slsjye] {
    background: repeating-linear-gradient(
        -45deg,
        #bbf7d0 0px,
        #bbf7d0 5px,
        #4ade80 5px,
        #4ade80 10px
    );
    color: var(--primary-colours-sita-blue, #005485);
}

    .pill-half--red-striped:hover[b-gp85slsjye] {
        background: repeating-linear-gradient(
            -45deg,
            #86efac 0px,
            #86efac 5px,
            #22c55e 5px,
            #22c55e 10px
        );
    }

/* Yellow variant � ICE active (Stand state) */
.pill-half--yellow[b-gp85slsjye] {
    background: #fef9c3;
    color: var(--primary-colours-sita-blue, #005485);
}

    .pill-half--yellow:hover[b-gp85slsjye] {
        background: #fde047;
    }

/* Full-size single action button */
.pill-full[b-gp85slsjye] {
    font-size: 13px;
    font-weight: 700;
    width: 113px;
    height: 35px;
    cursor: pointer;
    border-radius: 0px;
    border: 2px solid #005485;
    line-height: 1;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.6px;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

    .pill-full:focus:not(:focus-visible)[b-gp85slsjye] {
        outline: none;
        box-shadow: none;
    }

    .pill-full:focus-visible[b-gp85slsjye] {
        outline: 2px solid #005485;
        outline-offset: 2px;
    }

/* RIC � green (Pad state) */
.pill-full--ric-red[b-gp85slsjye] {
    background: #bbf7d0;
    color: var(--primary-colours-sita-blue, #005485);
}

    .pill-full--ric-red:hover[b-gp85slsjye] {
        background: #86efac;
        box-shadow: 0 2px 6px rgba(134, 239, 172, 0.4);
    }

/* RIC � grey (None state) */
.pill-full--ric-grey[b-gp85slsjye] {
    background: #f3f4f6;
    color: #6b7280;
}

    .pill-full--ric-grey:hover[b-gp85slsjye] {
        background: #e5e7eb;
    }

/* RIC � blue (General state) */
.pill-full--ric-blue[b-gp85slsjye] {
    background: #dbeafe;
    color: #1d4ed8;
}

    .pill-full--ric-blue:hover[b-gp85slsjye] {
        background: #93c5fd;
        box-shadow: 0 2px 6px rgba(147, 197, 253, 0.5);
    }

/* ICE � yellow (Stand state) */
.pill-full--ice[b-gp85slsjye] {
    background: #fef9c3;
    color: var(--primary-colours-sita-blue, #005485);
}

    .pill-full--ice:hover[b-gp85slsjye] {
        background: #fde047;
        box-shadow: 0 2px 6px rgba(253, 224, 71, 0.5);
    }

.pill[b-gp85slsjye] {
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    min-width: 50px;
    height: 41px;
    cursor: pointer;
    border: 2px solid #005485;
    line-height: 1;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.4px;
    transition: background 0.15s ease;
}

    .pill:focus:not(:focus-visible)[b-gp85slsjye] {
        outline: none;
        box-shadow: none;
    }

    .pill:focus-visible[b-gp85slsjye] {
        outline: 2px solid #005485;
        outline-offset: 2px;
    }

/* RIC � default (no state) */
.pill-ric[b-gp85slsjye] {
    background: #fff;
    color: #6b7280;
}

    .pill-ric:hover[b-gp85slsjye] {
        background: #f0f4f8;
    }

/* None / null � grey */
.pill-ric--grey[b-gp85slsjye] {
    background: #f3f4f6;
    color: #6b7280;
    border-right: 1px solid #d1d5db;
}

    .pill-ric--grey:hover[b-gp85slsjye] {
        background: #e5e7eb;
    }

/* Pad � green */
.pill-ric--red[b-gp85slsjye] {
    background: #dcfce7;
    color: var(--primary-colours-sita-blue, #005485);
    border-right: 1px solid #86efac;
}

    .pill-ric--red:hover[b-gp85slsjye] {
        background: #86efac;
    }

/* Stand � yellow */
.pill-ric--yellow[b-gp85slsjye] {
    background: #fef9c3;
    color: var(--primary-colours-sita-blue, #005485);
    border-right: 1px solid #fde047;
}

    .pill-ric--yellow:hover[b-gp85slsjye] {
        background: #fde047;
    }

/* General � blue */
.pill-ric--blue[b-gp85slsjye] {
    background: #dbeafe;
    color: #1d4ed8;
    border-right: 1px solid #93c5fd;
}

    .pill-ric--blue:hover[b-gp85slsjye] {
        background: #93c5fd;
    }

/* ICE � default */
.pill-ice[b-gp85slsjye] {
    background: #fff;
    color: var(--primary-colours-sita-blue, #005485);
}

    .pill-ice:hover[b-gp85slsjye] {
        background: #f0f4f8;
    }

/* ICE active when Stand */
.pill-ice--yellow[b-gp85slsjye] {
    background: #fef9c3;
    color: var(--primary-colours-sita-blue, #005485);
}

    .pill-ice--yellow:hover[b-gp85slsjye] {
        background: #fde047;
    }

/* --- Time-range pill --------------------------------------- */
.fpl-time-range[b-gp85slsjye] {
    position: relative;
    flex-shrink: 0;
}

    .fpl-time-range[b-gp85slsjye]  .dtp-hidden {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
    }

.fpl-time-range-pill[b-gp85slsjye] {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    background: #fff;
    cursor: default;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    user-select: none;
}

.fpl-time-segment[b-gp85slsjye] {
    cursor: pointer;
    color: #111;
}

    .fpl-time-segment:hover[b-gp85slsjye] {
        color: #005485;
        text-decoration: underline;
    }

.fpl-time-dash[b-gp85slsjye] {
    color: #555;
    padding: 0 2px;
}

.fpl-time-clock-icon[b-gp85slsjye] {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    flex-shrink: 0;
}

/* ?? Spinner overlay � covers the FPL panel while a PATCH is in flight ?? */
.fpl-spinner-overlay[b-gp85slsjye] {
    position: absolute;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(2px);
    border-radius: inherit;
}

/* ??????????????????????????????????????????????????????????????
   Hover tooltip
   Uses position:fixed so it escapes every overflow:hidden ancestor.
   The top/left coordinates are set via inline JS in onmouseenter.
   ?????????????????????????????????????????????????????????????? */

/* Outer wrapper � just needs to be the nearest positioned ancestor
   so the tooltip can reference it; overflow:visible is required. */
.fpl-row-wrapper[b-gp85slsjye] {
    position: relative;
    overflow: visible;
}

/* The tooltip bubble � uses position:fixed to escape all overflow:hidden ancestors.
   top/left are set by the onmouseenter JS on fpl-row. */
.fpl-tooltip[b-gp85slsjye] {
    display: none;
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    padding: 10px 12px;
    min-width: 380px;
    max-width: 480px;
    pointer-events: none;
    top: 0;
    left: 0;
}

/* Tooltip header info rows */
.fpl-tooltip-header[b-gp85slsjye] {
    display: flex;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.fpl-tooltip-label[b-gp85slsjye] {
    font-weight: 700;
    color: #111;
    min-width: 90px;
}

.fpl-tooltip-value[b-gp85slsjye] {
    color: #333;
}

/* Tooltip allocation table */
.fpl-tooltip-table[b-gp85slsjye] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    font-size: 11px;
}

    .fpl-tooltip-table th[b-gp85slsjye],
    .fpl-tooltip-table td[b-gp85slsjye] {
        border: 1px solid #dce3ea;
        padding: 4px 6px;
        text-align: center;
    }

.fpl-tt-col-label[b-gp85slsjye] {
    width: 44px;
    background-color: var(--primary-colours-sita-light-blue) !important;
}

/* Blue group headers */
.fpl-tt-group-header[b-gp85slsjye] {
    font-weight: 700;
    font-size: 11px;
    color: #fff;
}

/* Sub-headers (Forecasting / Planning) */
.fpl-tt-sub-header[b-gp85slsjye] {
    font-size: 10px;
    color: #fff;
    font-weight: 600;
}

.fpl-tt-forecasting[b-gp85slsjye] {
    background-color: var(--primary-colours-sita-light-blue) !important;
}

.fpl-tt-planning[b-gp85slsjye] {
    background-color: var(--primary-colours-sita-light-blue) !important;
}

/* Lane label column */
.fpl-tt-lane-label[b-gp85slsjye] {
    font-weight: 600;
    color: #333;
    text-align: left;
    padding-left: 8px;
}

/* Data cells */
.fpl-tt-cell[b-gp85slsjye] {
    color: #555;
}

.fpl-column-header[b-gp85slsjye] {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
}

/* Arrow shown on the right edge of the row when the user hovers it */
.row-hover-arrow[b-gp85slsjye] {
    position: absolute;
    left: -7px; /* sits just outside the row's right border */
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.1s ease;
    pointer-events: none;
    z-index: 10000; /* always above the tooltip */
}

.fpl-row:hover .row-hover-arrow[b-gp85slsjye] {
    opacity: 1;
}


/* --- RIC right-click context menu -------------------------- */
.fpl-ric-menu-backdrop[b-gp85slsjye] {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: transparent;
}

.fpl-ric-menu[b-gp85slsjye] {
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid #dce3ea;
    border-radius: 6px;
    box-shadow: 0 6px 17px rgba(0, 0, 0, 0.18);
    min-width: 113px;
    max-height: 249px;
    overflow-y: auto;
    padding: 5px 0;
}

.fpl-ric-menu-item[b-gp85slsjye] {
    display: block;
    width: 100%;
    padding: 8px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.12s ease;
}

    .fpl-ric-menu-item:hover[b-gp85slsjye] {
        background: #f0f4f8;
        color: #005485;
    }

    .fpl-ric-menu-item:focus-visible[b-gp85slsjye] {
        outline: 2px solid #005485;
        outline-offset: -2px;
    }
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingHeader.razor.rz.scp.css */
.planning-container[b-52gm6fqnet] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
    width: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.planning-text[b-52gm6fqnet] {
    color: #1f1f1f;
    font-size: 32px !important;
    font-weight: 700 !important;
}

.planning-dropdown[b-52gm6fqnet] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    z-index: 0;
    overflow: visible;
}

    .planning-dropdown[b-52gm6fqnet]  .k-dropdown-wrap,
    .planning-dropdown[b-52gm6fqnet]  .k-input,
    .planning-dropdown[b-52gm6fqnet]  .k-input-inner,
    .planning-dropdown[b-52gm6fqnet]  .k-input-value-text,
    .planning-dropdown[b-52gm6fqnet]  .k-widget {
        position: relative;
        z-index: 1;
        padding-right: 96px !important;
        background: transparent !important;
    }

.deicing-dropdown-arrow[b-52gm6fqnet] {
    position: absolute;
    right: 157px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: auto;
    pointer-events: none;
    z-index: 999999;
}

.planning-dropdown[b-52gm6fqnet]  .k-select,
.planning-dropdown[b-52gm6fqnet]  .k-button-icon,
.planning-dropdown[b-52gm6fqnet]  .k-icon,
.planning-dropdown[b-52gm6fqnet]  .k-svg-icon,
.planning-dropdown[b-52gm6fqnet]  .k-input-button {
    display: none !important;
}

.planning-dropdown .k-dropdown-wrap[b-52gm6fqnet],
.planning-dropdown .k-input[b-52gm6fqnet] {
    padding-right: 56px !important;
}

.Dot[b-52gm6fqnet] {
    color: var(--primary-colours-sita-blue) !important;
    text-align: left;
    font-family: "OpenSans-Bold", sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-weight: 700;
    position: absolute;
    left: 241px;
    top: 94px;
}

[b-52gm6fqnet] .planning-dropdown {
    background: #f4f4f4 !important;
    border: none !important;
}

    [b-52gm6fqnet] .planning-dropdown .k-input-value-text {
        color: #1f1f1f;
        font-size: 32px !important;
        font-weight: 700 !important;
    }

    [b-52gm6fqnet] .planning-dropdown .k-dropdown,
    [b-52gm6fqnet] .planning-dropdown .k-picker {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    [b-52gm6fqnet] .planning-dropdown .k-select {
        display: none !important;
    }

    [b-52gm6fqnet] .planning-dropdown .k-button-icon,
    [b-52gm6fqnet] .planning-dropdown .k-icon,
    [b-52gm6fqnet] .planning-dropdown .k-svg-icon,
    [b-52gm6fqnet] .planning-dropdown .k-svg-i-caret-alt-down,
    [b-52gm6fqnet] .planning-dropdown .k-i-caret-alt-down,
    [b-52gm6fqnet] .planning-dropdown .k-input-button {
        display: none !important;
    }

    .planning-text[b-52gm6fqnet],
    [b-52gm6fqnet] .planning-dropdown .k-input-value-text {
        color: #1f1f1f;
        font-size: 32px !important;
        font-weight: 700 !important;
    }

.planning-text[b-52gm6fqnet],
.planning-container .planning-dropdown[b-52gm6fqnet]  .k-input-value-text,
.planning-container .planning-dropdown[b-52gm6fqnet]  .k-input-inner {
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingHomePage.razor.rz.scp.css */
.header-container[b-04tcuefgsd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background-color: var(--sita-off-white);
    flex-shrink: 0;
    border-bottom: none;
    box-shadow: inset 0 -2px 0 0 var(--primary-colours-sita-light-grey);
    margin-left: 19px;
    margin-right: 16px;
    padding-left: 0;
    padding-right: 0;
}

.container[b-04tcuefgsd] {
    display: flex;
}

.left-section[b-04tcuefgsd] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: -14px;
}

.fpl-toggle-btn[b-04tcuefgsd] {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #005485;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    color: #005485;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .fpl-toggle-btn:hover[b-04tcuefgsd] {
        background: #f0f8ff;
    }

    .fpl-toggle-btn.active[b-04tcuefgsd] {
        background: #005485;
        color: #ffffff;
    }

        .fpl-toggle-btn.active .flight-plan-list[b-04tcuefgsd] {
            color: #ffffff;
            background: transparent;
        }

        .fpl-toggle-btn.active .deicing-flight-list[b-04tcuefgsd] {
            filter: none;
        }

.telerik-button[b-04tcuefgsd] {
    background: #ffffff;
    border-radius: 4px;
    border-style: none;
    border-color: #005485;
    border-width: 1px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    left: 1258px;
    top: 100px;
}

.deicing-flight-list[b-04tcuefgsd] {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: visible;
    display: inline-block;
}

.flight-plan-list[b-04tcuefgsd] {
    text-align: left;
    font-family: var( --body-text-body-text-paragraph-font-family, "OpenSans-Regular", sans-serif );
    font-size: var(--body-text-body-text-paragraph-font-size, 14px);
    line-height: var(--body-text-body-text-paragraph-line-height, 20px);
    font-weight: var(--body-text-body-text-paragraph-font-weight, 400);
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: flex-start;
    color: #005485;
    background: transparent;
}

/* ── Override global .page-content for the DeIce page only ──
   The global site.css adds padding:1.5rem + overflow:auto which
   breaks the flex height chain needed for the Gantt + FPL layout. */
.page-content[b-04tcuefgsd] {
    padding: 0 !important;
    overflow: hidden !important;
}

.header-container .telerik-button[b-04tcuefgsd] {
    position: relative;
    left: auto;
    top: auto;
    margin-left: 8px;
}

.container[b-04tcuefgsd] {
    display: flex;
}



/* ── Outer flex row: fills all remaining height below the page header ── */
.deice-body[b-04tcuefgsd] {
    display: flex;
    flex-direction: row;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    background-color: #f4f4f4;
    gap: 6px;
    margin-left: 19px;
    margin-right: 16px;
}

/* ── Left column: toolbar on top, gantt chart below, shrinks when FPL opens ── */
.deice-left[b-04tcuefgsd] {
    display: flex;
    flex-direction: column;
    flex: 1; /* takes all width not consumed by the side panel */
    min-width: 0; /* allows shrinking below natural content width */
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

/* ── Gantt chart area ── */
.deice-main-content[b-04tcuefgsd] {
    flex: 1;
    overflow: auto;
    min-height: 0;
}

/* ── Right side panel: fixed width, full height of deice-body ── */
.deice-side-panel[b-04tcuefgsd] {
    width: 427px;
    flex-shrink: 0; /* never compresses — left column absorbs the change */
    border-left: 1px solid #ddd;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 30;
    transition: width 0.3s ease;
    margin-top: 8px;
}

    .deice-side-panel.fullscreen-override[b-04tcuefgsd] {
        position: fixed;
        top: -8px;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        border: none;
    }

/* ── Fullscreen: cover entire viewport, sit above app shell (topbar + sidebar) ── */
.deice-fullscreen[b-04tcuefgsd] {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--sita-off-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: unset !important;
    padding: 14px 24px !important;
    animation: fullscreen-in-b-04tcuefgsd 0.3s ease;
}

/* ── Smooth enter animation when going fullscreen ── */
@keyframes fullscreen-in-b-04tcuefgsd {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── Smooth exit animation when leaving fullscreen ── */
.deice-fullscreen-exit[b-04tcuefgsd] {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: unset !important;
    padding: 0 !important;
    animation: fullscreen-out-b-04tcuefgsd 0.3s ease forwards;
}

@keyframes fullscreen-out-b-04tcuefgsd {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.97);
    }
}

/* ── Secondary Gantt Chart ── */
.secondary-gantt-wrapper[b-04tcuefgsd] {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    background-color: var(--sita-off-white);
    border-top: none;
    height: 320px; /* fixed height — matches ~6 resource rows visible */
    min-height: 200px;
}

    /* The DeicingResources planner inside the secondary wrapper must fill remaining height */
    .secondary-gantt-wrapper > :last-child[b-04tcuefgsd] {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

.secondary-gantt-header[b-04tcuefgsd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 40px;
    background-color: var(--primary-colours-sita-light-blue) !important;
    color: #ffffff;
    font-family: var(--links-and-action-tab-menu-active-font-family, "Inter-Bold", sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.secondary-gantt-title[b-04tcuefgsd] {
    user-select: none;
}

.secondary-gantt-close[b-04tcuefgsd] {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .secondary-gantt-close:hover[b-04tcuefgsd] {
        background: rgba(255, 255, 255, 0.2);
    }

/* Invert the SITA-blue close.svg to white so it reads on the dark header */
.secondary-gantt-close-icon[b-04tcuefgsd] {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    display: block;
}

/* ── Gantt wrapper: takes all remaining height above the find-task panel ── */
.deice-gantt-wrapper[b-04tcuefgsd] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* ── Find Task panel: fixed height strip at the bottom of deice-left ── */
.deice-find-task-panel[b-04tcuefgsd] {
    flex-shrink: 0;
    height: 320px;
    border-top: 2px solid var(--primary-colours-sita-light-grey);
    background: #ffffff;
    overflow: auto;
}

/* ── Clipboard panel: fixed height strip at the bottom of deice-left ── */
.deice-clipboard-panel[b-04tcuefgsd] {
    flex-shrink: 0;
    height: 160px; /* header (36 px) + time header (20 px) + drop-zone (96 px) + breathing room */
    border-top: 2px solid var(--primary-colours-sita-light-grey);
    background: #ffffff;
    overflow: hidden;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingPlanningFindFlight.razor.rz.scp.css */
/* ── Wrapper ─────────────────────────────────────────────────────────── */
.task-grid-wrapper[b-pz6gw1whq3] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

/* ── Blue toolbar ────────────────────────────────────────────────────── */
.find-task-toolbar[b-pz6gw1whq3] {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
background: var(--primary-colours-sita-light-blue);
color: #fff;
    padding: 8px 14px;
    width: 100%;
    box-sizing: border-box;
}

.find-task-title[b-pz6gw1whq3] {
    white-space: nowrap;
    flex-shrink: 0;
}

    .find-task-title .title[b-pz6gw1whq3] {
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.4px;
        text-transform: uppercase;
    }

    .find-task-title .meta[b-pz6gw1whq3] {
        font-size: 13px;
        margin-left: 4px;
        opacity: 0.92;
    }

.find-task-search[b-pz6gw1whq3] {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Override Telerik search box inside blue toolbar */
.find-task-toolbar .find-task-searchbox .k-input[b-pz6gw1whq3],
.find-task-toolbar .find-task-searchbox .k-searchbox[b-pz6gw1whq3] {
    background: #fff !important;
    border-radius: 4px;
    color: #333;
}

.find-task-toolbar .find-task-searchbox .k-input-inner[b-pz6gw1whq3]::placeholder {
    color: #888;
}

/* Close (✕) button */
.find-task-toolbar .toolbar-dismiss[b-pz6gw1whq3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    width: 28px;
    border: 0;
    background: transparent;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
}

    .find-task-toolbar .toolbar-dismiss:hover[b-pz6gw1whq3] {
        background: rgba(255, 255, 255, 0.2);
    }

/* ── Make the Telerik toolbar area transparent ─────────────────────── */
.task-grid-wrapper .k-toolbar.k-grid-toolbar[b-pz6gw1whq3] {
    padding: 0;
    background: transparent;
    border: none;
}

/* ── Grid ─────────────────────────────────────────────────────────────── */
.find-task-grid[b-pz6gw1whq3] {
    border: none;
    min-width: 1600px; /* sum of all column widths so columns never compress */
}

    /* Header cell padding — non-conflicting layout only; colour/bg overrides live in site.css */
    .find-task-grid .k-table-th[b-pz6gw1whq3] {
        padding-top: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #ddd;
    }

    /* Data rows */
    .find-task-grid .k-table-td[b-pz6gw1whq3] {
        font-size: 13px;
        color: #222;
        border-bottom: 1px solid #eee;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    /* Hover highlight */
    .find-task-grid .k-table-row:hover .k-table-td[b-pz6gw1whq3] {
        background: #f0f8ff;
    }

    /* Zebra stripe */
    .find-task-grid .k-table-alt-row .k-table-td[b-pz6gw1whq3] {
        background: #fafafa;
    }

    .find-task-grid .k-table-alt-row:hover .k-table-td[b-pz6gw1whq3] {
        background: #f0f8ff;
    }

    /* ── Action column icon button ──────────────────────────────────────── */
    .find-task-grid .grid-icon-btn[b-pz6gw1whq3] {
        border: 0;
        background: transparent;
        color: var(--primary-colours-sita-light-blue);
        padding: 4px 6px;
        border-radius: 4px;
        cursor: pointer;
        line-height: 1;
    }

        .find-task-grid .grid-icon-btn:hover[b-pz6gw1whq3] {
            background: rgba(0, 162, 255, 0.12);
        }

    /* ── Focus ring ─────────────────────────────────────────────────────── */
    .find-task-grid .k-focus[b-pz6gw1whq3] {
        box-shadow: 0 0 0 2px rgba(0, 162, 255, 0.35) inset !important;
    }
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingPlanningGanttChart.razor.rz.scp.css */

.cg-sticky-header[b-helye7od29] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--sita-off-white);
    flex-shrink: 0;
    overflow: visible;
}

.pill-title[b-helye7od29] {
    font-family: Open Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    position:relative;
    z-index:2;
}

.task-pill[b-helye7od29] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    cursor: grab;
    z-index: 20;
    touch-action: none;
    overflow:hidden;
}

    .task-pill:active[b-helye7od29] {
        cursor: grabbing;
    }

.pill-mark-overlay[b-helye7od29] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #72EEFF; /* deep sky-blue, semi-transparent */
    pointer-events: none;
}

.cg-day-header[b-helye7od29] {
    position: relative;
    height: 14px;
    background: var(--sita-off-white);
    flex-shrink: 0;
    overflow: visible;
}

.cg-day-label[b-helye7od29] {
    position: absolute;
    left: var(--cg-day-label-left);
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
}

    .cg-day-label .day-label[b-helye7od29] {
        font-family: Open Sans;
        font-weight: 700;
        font-size: 10px;
        line-height: 100%;
        letter-spacing: 0%;
        padding-left: 6px;
    }


.custom-gantt[b-helye7od29] {
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
    font-size: 12px;
    user-select: none;
    -webkit-user-select: none;
    background: var(--sita-off-white);
    display: flex;
    flex-direction: column;
    position: relative;
    touch-action: none;
    width: 100%;
    height: 100%;
    overflow: visible;
}

    .custom-gantt.is-dragging[b-helye7od29] {
        cursor: grabbing;
    }


.cg-empty-resource-row[b-helye7od29] {
    height: calc(var(--cg-extra-lines, 1) * 8px);
    opacity: 1;
    gap: 10px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    background: #D9D9D9;
}


.cg-day-cell[b-helye7od29] {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--sita-off-white);
    overflow: visible;
    box-sizing: border-box;
}

.cg-time-header[b-helye7od29] {
    position: relative;
    height: 22px;
    background: var(--sita-off-white);
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
    overflow: visible;
    z-index: 2;
}

.cg-time-cell[b-helye7od29] {
    position: absolute;
    left: var(--cg-slot-left);
    width: var(--cg-slot-width);
    min-width: var(--cg-slot-width);
    top: 0;
    bottom: 0;
    font-size: 11px;
    font-weight: 500;
    color: #555;
    box-sizing: border-box;
    overflow: visible;
    border: none;
    flex-shrink: 0;
}

    .cg-time-cell[b-helye7od29]::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 1px;
        height: 8px;
        background: #bbb;
    }

.cg-time-label-anchor[b-helye7od29] {
    position: absolute;
    left: 0;
    bottom: 6px;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
    line-height: 1;
}

    .cg-time-label-anchor .time-label[b-helye7od29],
    .cg-time-label-anchor span[b-helye7od29] {
        display: block;
        white-space: nowrap;
        font-size: 11px;
        font-weight: 500;
        color: #555;
        transform: none;
    }

.cg-body[b-helye7od29] {
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.cg-row[b-helye7od29] {
    position: relative;
    display: flex;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    flex-shrink: 0;
    width: 100%;
    height: 36px;
}

.cg-row-drop-target[b-helye7od29] {
    background: rgba(0, 170, 255, 0.06);
    outline: 2px dashed #00aaff;
    outline-offset: -2px;
}

.cg-row-unavailable[b-helye7od29] {
    cursor: not-allowed;
}

    .cg-row-unavailable .cg-task-lane[b-helye7od29],
    .cg-row-unavailable .task-pill[b-helye7od29] {
        pointer-events: none;
        cursor: not-allowed;
    }

.cg-row-accent[b-helye7od29] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.cg-group-separator[b-helye7od29] {
    box-shadow: inset 0 3px 0 0 #b0b8c4;
    position: relative;
    overflow: hidden;
}

.cg-separator-line[b-helye7od29] {
    height: 100%;
}

.cg-timeline[b-helye7od29] {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cg-grid-line[b-helye7od29] {
    position: absolute;
    left: var(--cg-grid-left);
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e8e8e8;
    pointer-events: none;
}

.cg-task-lane[b-helye7od29] {
    position: relative;
    width: 100%;
    height: 100%;
}

.cg-snap-grid[b-helye7od29] {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.cg-snap-cell[b-helye7od29] {
    position: absolute;
    top: 0;
    bottom: 0;
    box-sizing: border-box;
    border-right: 1px solid rgba(0, 0, 0, 0.50);
    background: transparent;
}

    .cg-snap-cell.cg-av-free[b-helye7od29] {
        background-color: #22c55e;
    }

    .cg-snap-cell.cg-av-occupied[b-helye7od29] {
        background-color: #ef4444;
    }

    .cg-snap-cell:not(.cg-av-free):not(.cg-av-occupied)[b-helye7od29] {
        background: rgba(0, 0, 0, 0.04);
    }

.slot-unavailable-overlay[b-helye7od29] {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
    background-color: rgba(220, 220, 220, 0.65);
    background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 5px, transparent 5px 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slot-unavailable-label[b-helye7od29] {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.cg-impairment-segment[b-helye7od29] {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
    background-color: rgba(220, 220, 220, 0.70);
    background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 6px, transparent 6px 12px);
}

.time-label[b-helye7od29] {
    position: absolute;
    left: 0;
    bottom: 6px;
    display: block;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    color: #555;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.marker[b-helye7od29] {
    position: absolute;
    left: var(--cg-marker-left);
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 20;
    pointer-events: none;
}

/* Red line — current UTC time */
.current-time-line[b-helye7od29] {
    background: #d33;
}

    .current-time-line[b-helye7od29]::before {
        content: "";
        position: absolute;
        right: 2px;
        top: 0;
        bottom: 0;
        width: 400px;
        background: linear-gradient(to left, rgba(211,51,51,0.06), transparent);
        pointer-events: none;
    }

/* Yellow line — current UTC time + PlanningHorizonMinutes */
.planning-horizon-line[b-helye7od29] {
    background: #f5c542;
}

    .planning-horizon-line[b-helye7od29]::after {
        content: "";
        position: absolute;
        left: 2px;
        top: 0;
        bottom: 0;
        width: 400px;
        background: linear-gradient(to right, rgba(245,197,66,0.08), transparent);
        pointer-events: none;
    }

/* ── Task-pill tooltip ─────────────────────────────────────────────────── */
.cg-tooltip-overlay[b-helye7od29] {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.cg-tooltip-arrow[b-helye7od29] {
    width: 12px;
    height: 20px;
    margin-top: 16px; /* aligns arrow vertically with first row */
    flex-shrink: 0;
}

.cg-tooltip-content[b-helye7od29] {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    padding: 12px 14px;
    min-width: 260px;
    max-width: 340px;
    font-size: 13px;
    line-height: 1.5;
}

.cg-tooltip-row[b-helye7od29] {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
}

.cg-tooltip-label[b-helye7od29] {
    font-weight: 700;
    white-space: nowrap;
    color: #111;
}

.cg-tooltip-value[b-helye7od29] {
    color: #333;
    word-break: break-word;
}

.cg-tooltip-divider[b-helye7od29] {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 8px 0;
}

.cg-tooltip-violation[b-helye7od29] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #d32f2f;
    font-weight: 600;
    font-size: 13px;
}

.cg-tooltip-violation-icon[b-helye7od29] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.task-pill-dragging[b-helye7od29] {
    opacity: 0.30;
    outline: 2px dashed var(--primary-colours-sita-grey);
    outline-offset: -2px;
    cursor: grabbing;
    pointer-events: none;
    z-index: 5;
}

.task-pill-ghost[b-helye7od29] {
    pointer-events: none;
    position: fixed;
    z-index: 99999;
    opacity: 0.90;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    cursor: grabbing;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingPrintDialog.razor.rz.scp.css */
/* ?? Print Options Window (Telerik TelerikWindow) ?? */

.print-window-body[b-zzbuw1rasp] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 0 12px;
}

.print-field-row[b-zzbuw1rasp] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.print-field-label[b-zzbuw1rasp] {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.print-checkbox-row[b-zzbuw1rasp] {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.print-checkbox-label[b-zzbuw1rasp] {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    margin: 0;
}

.print-window-footer[b-zzbuw1rasp] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    margin-top: 4px;
}

/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingResources.razor.rz.scp.css */
:root[b-4p34vo88sm] {
    --cg-row-border: #d0d5dd;
    --col-header-height: 36px; /* cg-day-header (14px) + cg-time-header (22px) */
}

.resource-menu-context[b-4p34vo88sm],
.resource-menu-context .rz-menu-wrapper[b-4p34vo88sm],
.resource-menu-context ul[b-4p34vo88sm] {
    width: 166px !important;
    height: 80px !important;
    opacity: 1 !important;
    background: transparent !important;
    border: none !important;
    padding: 8px 8px !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.context-menu[b-4p34vo88sm],
.context-menu .rz-navigation-item-wrapper[b-4p34vo88sm],
.context-menu a[b-4p34vo88sm] {
    width: 166px !important;
    height: 40px !important;
    opacity: 1 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Planner shell ───────────────────────────────────────────────────────────── */
.planner[b-4p34vo88sm] {
    display: flex;
    flex-direction: column;
    background-color: var(--sita-off-white);
    height: 100%;
    overflow: hidden;
}

/* ── Single shared scroll container ─────────────────────────────────────────── */
/*    All three columns live here. One overflow-y: auto drives everything.      */
/*    position: relative is required for sticky to work inside it.              */
.planner-body-row[b-4p34vo88sm] {
    display: flex;
    flex-direction: row;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative; /* sticky children anchor to this */
    align-items: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .planner-body-row[b-4p34vo88sm]::-webkit-scrollbar {
        display: none; /* Chrome / Safari / Chromium Edge */
    }

/* ── Gantt wrapper ───────────────────────────────────────────────────────────── */
.gantt-container[b-4p34vo88sm] {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* ── Left / Right columns ────────────────────────────────────────────────────── */
.left-columns[b-4p34vo88sm],
.right-columns[b-4p34vo88sm] {
    width: 110px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #fafafa;
}

.left-columns[b-4p34vo88sm] {
    border-right: 1px solid #e3e8ef;
}

.right-columns[b-4p34vo88sm] {
    border-left: 1px solid #e3e8ef;
}

/* Spacer inside left/right columns that aligns with the sticky gantt header   */
.col-header-spacer[b-4p34vo88sm] {
    height: var(--col-header-height);
    flex-shrink: 0;
    background: var(--sita-off-white);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 10; /* same level as cg-sticky-header */
    height: 36px;
}

/* ── Resource row ────────────────────────────────────────────────────────────── */
.resource-row[b-4p34vo88sm] {
    height: 36px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
    position: relative;
    color: #000;
    font-family: var(--links-and-action-tab-menu-active-font-family, "Inter-Bold", sans-serif);
    font-size: var(--links-and-action-tab-menu-active-font-size, 10px);
    font-weight: var(--links-and-action-tab-menu-active-font-weight, 800);
}

.left-columns .resource-row[b-4p34vo88sm] {
    padding-left: 10px;
    justify-content: flex-start;
}

.right-columns .resource-row[b-4p34vo88sm] {
    padding-right: 8px;
    justify-content: flex-end;
}

/* ── Group separator ─────────────────────────────────────────────────────────── */
.group-separator[b-4p34vo88sm] {
    width: 110px;
    height: calc(var(--cg-extra-lines, 1) * 8px);
    background: #D9D9D9;
    border-bottom: 1px solid var(--cg-row-border);
}

/* ── Resource name ───────────────────────────────────────────────────────────── */
.resource-name[b-4p34vo88sm] {
    color: #000;
    font-family: var(--links-and-action-tab-menu-active-font-family, "Inter-Bold", sans-serif);
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
    width: 90px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Resource tooltip ────────────────────────────────────────────────────────── */
.resource-row[b-4p34vo88sm] {
    position: relative;
}

.resource-tooltip[b-4p34vo88sm] {
    display: none;
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    pointer-events: none;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    padding: 12px 14px;
    min-width: 220px;
    max-width: 320px;
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;
}

.resource-tooltip--right[b-4p34vo88sm] {
    left: auto;
    right: calc(100% + 8px);
}

.resource-row:hover .resource-tooltip[b-4p34vo88sm] {
    display: block;
}

.tooltip-row[b-4p34vo88sm] {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
}

.tooltip-label[b-4p34vo88sm] {
    font-weight: 700;
    white-space: nowrap;
    color: #111;
}

.tooltip-value[b-4p34vo88sm] {
    color: #333;
    word-break: break-word;
}

.tooltip-violation[b-4p34vo88sm] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #d32f2f;
    font-weight: 600;
    font-size: 13px;
    border-top: 1px solid #f0d0d0;
    padding-top: 8px;
}

.tooltip-violation-icon[b-4p34vo88sm] {
    font-size: 16px;
    line-height: 1;
    color: #d32f2f;
}

/* ── Resource tooltip ───────────────────────────────────────────────────────── */
.resource-row[b-4p34vo88sm] {
    overflow: visible;
}

.resource-tooltip[b-4p34vo88sm] {
    display: none;
    position: absolute;
    left: 110px;
    top: 0;
    z-index: 100;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    padding: 10px 14px;
    pointer-events: none;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #1a1a1a;
    white-space: nowrap;
}

.resource-tooltip--right[b-4p34vo88sm] {
    left: auto;
    right: 110px;
}

.resource-row:hover .resource-tooltip[b-4p34vo88sm] {
    display: block;
}

.tooltip-row[b-4p34vo88sm] {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    align-items: baseline;
}

.tooltip-label[b-4p34vo88sm] {
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.tooltip-value[b-4p34vo88sm] {
    font-weight: 400;
    color: #1a1a1a;
}

.tooltip-violation[b-4p34vo88sm] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e3e8ef;
    color: #d92d20;
    font-weight: 600;
    font-size: 12px;
}

.tooltip-violation-icon[b-4p34vo88sm] {
    font-size: 16px;
    color: #f79009;
    line-height: 1;
}

.tooltip-value--wrap[b-4p34vo88sm] {
    white-space: normal;
    word-break: break-word;
    max-width: 200px;
}

/* ── Misc ────────────────────────────────────────────────────────────────────── */
.sita-grid .k-grid td:not(.k-command-cell)[b-4p34vo88sm],
.sita-grid .k-grid .k-table-td:not(.k-command-cell)[b-4p34vo88sm] {
    border-inline-start: 1px solid !important;
}

/* Arrow shown on the right edge of the row when the user hovers it */
.row-hover-arrow[b-4p34vo88sm] {
    position: absolute;
    right: -7px; /* sits just outside the row's right border */
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.1s ease;
    pointer-events: none;
    z-index: 10000; /* always above the tooltip */
}

.row-hover-arrow-left[b-4p34vo88sm] {
    position: absolute;
    left: -7px; /* sits just outside the row's right border */
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.1s ease;
    pointer-events: none;
    z-index: 10000; /* always above the tooltip */
}

.resource-row:hover .row-hover-arrow[b-4p34vo88sm] {
    opacity: 1;
}

.resource-row:hover .row-hover-arrow-left[b-4p34vo88sm] {
    opacity: 1;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeIcingStatus.razor.rz.scp.css */
.de-ice-mode[b-gfcxaf3eyb] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingTabs.razor.rz.scp.css */
.deicing-tab-container[b-h0cfwxjjlu] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: var(--primary-colours-sita-white) !important;
    height: 56px;
    border-radius: 8px 8px 0px 0px;
}

.deicing-tabstrip[b-h0cfwxjjlu] {
    flex: 1 1 auto;
}

/* ── Tab list row ── */
[b-h0cfwxjjlu] .k-tabstrip-items-wrapper {
    border-bottom: none !important;
}

[b-h0cfwxjjlu] .k-tabstrip-items {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 1.5rem !important;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 0.5rem !important;
    align-items: center !important;
    border-bottom: none !important;
}

/* ── Every tab item: remove Kendo default padding / borders ── */
[b-h0cfwxjjlu] .k-tabstrip-items .k-item {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* ── Inactive tab link ── */
[b-h0cfwxjjlu] .k-tabstrip-items .k-item .k-link {
    display: inline-block;
    padding: 4px 0 6px !important;
    color: var(--primary-colours-sita-blue, #005485);
    font-family: var(--links-and-action-tab-menu-heading-font-family, "OpenSans-SemiBold", sans-serif);
    font-size: var(--links-and-action-tab-menu-heading-font-size, 12px);
    line-height: var(--links-and-action-tab-menu-heading-line-height, 14px);
    font-weight: var(--links-and-action-tab-menu-heading-font-weight, 600);
    text-transform: uppercase;
    border-bottom: 3px solid transparent !important;
    background: transparent !important;
    text-decoration: none !important;
}

/* ── Active / selected tab link ── */
[b-h0cfwxjjlu] .k-tabstrip-items .k-item.k-active .k-link,
[b-h0cfwxjjlu] .k-tabstrip-items .k-item.k-selected .k-link,
[b-h0cfwxjjlu] .k-tabstrip-items .k-item.k-state-active .k-link,
[b-h0cfwxjjlu] .k-tabstrip-items .k-item.k-state-selected .k-link {
    color: #1a1a2e !important;
    font-family: var(--links-and-action-tab-menu-active-font-family, "Inter-Bold", sans-serif);
    font-weight: var(--links-and-action-tab-menu-active-font-weight, 700);
    border-bottom: 3px solid #1a1a2e !important;
    background: transparent !important;
}

/* ── Hide Kendo focus/hover highlight rings ── */
[b-h0cfwxjjlu] .k-tabstrip-items .k-item:focus,
[b-h0cfwxjjlu] .k-tabstrip-items .k-item:hover {
    box-shadow: none !important;
    background: transparent !important;
}

.deicing-status-button-wrapper[b-h0cfwxjjlu] {
    display: flex;
    align-items: center;
}

/* ── Tab content panel ── */
[b-h0cfwxjjlu] .k-tabstrip-content,
[b-h0cfwxjjlu] .k-tabstrip-content.k-active {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

/* ════════════════════════════════════════════════════════════════
   Forecasting mode — flat checkbox filter bar
   ════════════════════════════════════════════════════════════════ */
.deicing-tab-checkboxes[b-h0cfwxjjlu] {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    padding: 0 14px;
    overflow-x: auto;
    scrollbar-width: none;
    height: 100%;
}

    .deicing-tab-checkboxes[b-h0cfwxjjlu]::-webkit-scrollbar {
        display: none;
    }

/* One checkbox item: square box + label text */
.tab-chk-item[b-h0cfwxjjlu] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}

    .tab-chk-item:hover .tab-chk-box[b-h0cfwxjjlu] {
        border-color: #003d63;
    }

/* The visible square — unchecked state */
.tab-chk-box[b-h0cfwxjjlu] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-colours-sita-blue, #005485);
    border-radius: 3px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.1s ease, border-color 0.1s ease;
}

/* Checked state — filled blue square */
.tab-chk-box--checked[b-h0cfwxjjlu] {
    background: var(--primary-colours-sita-blue, #005485);
    border-color: var(--primary-colours-sita-blue, #005485);
}

/* SVG tick inside the filled square */
.tab-chk-tick[b-h0cfwxjjlu] {
    width: 10px;
    height: 8px;
    display: block;
}

/* Hide the native browser checkbox — keep it accessible */
.tab-chk-native[b-h0cfwxjjlu] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    margin: 0;
}

/* Tab name text */
.tab-chk-name[b-h0cfwxjjlu] {
    font-family: var(--links-and-action-tab-menu-heading-font-family, "OpenSans-SemiBold", sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/DeicingToolBar.razor.rz.scp.css */
.deicing-timeline-scale[b-18cfs12pmw]{
    margin:0 8px;
}


[b-18cfs12pmw] .custom-btn .k-dropdown,
[b-18cfs12pmw] .custom-btn .k-picker {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

[b-18cfs12pmw] .custom-btn .k-select {
    display: none !important;
}

[b-18cfs12pmw] .custom-btn .k-button-icon,
[b-18cfs12pmw] .custom-btn .k-icon,
[b-18cfs12pmw] .custom-btn .k-svg-icon,
[b-18cfs12pmw] .custom-btn .k-svg-i-caret-alt-down,
[b-18cfs12pmw] .custom-btn .k-i-caret-alt-down,
[b-18cfs12pmw] .custom-btn .k-input-button {
    display: none !important;
}

[b-18cfs12pmw] .custom-btn {
    border: none !important;
}

[b-18cfs12pmw] .k-button.k-button-solid-base:hover,
[b-18cfs12pmw] .k-button.k-button-solid-base:active {
    color: var(--primary-colours-sita-white) !important;
    background-color: unset !important;
    border-color: unset !important;
}

[b-18cfs12pmw] .planning-dropdown .k-input-value-text {
    color: #1f1f1f;
    font-size: 32px !important;
    font-weight: 700 !important;
}

[b-18cfs12pmw] .k-button.k-button-solid-base:hover,
[b-18cfs12pmw] .k-button.k-button-solid-base:active {
    color: var(--primary-colours-sita-white) !important;
    background-color: unset !important;
    border-color: unset !important;
}

[b-18cfs12pmw] .planning-dropdown .k-dropdown,
[b-18cfs12pmw] .planning-dropdown .k-picker {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

[b-18cfs12pmw] .planning-dropdown .k-select {
    display: none !important;
}

[b-18cfs12pmw] .planning-dropdown .k-button-icon,
[b-18cfs12pmw] .planning-dropdown .k-icon,
[b-18cfs12pmw] .planning-dropdown .k-svg-icon,
[b-18cfs12pmw] .planning-dropdown .k-svg-i-caret-alt-down,
[b-18cfs12pmw] .planning-dropdown .k-i-caret-alt-down,
[b-18cfs12pmw] .planning-dropdown .k-input-button {
    display: none !important;
}

[b-18cfs12pmw] .custom-range-date .k-floating-label {
    display: none !important;
}

[b-18cfs12pmw] .custom-range-date .k-input {
    height: 3.4rem;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: -2;
    border-style: none;
    padding: 0.15rem 2.2rem 0.15rem 0.5rem;
    line-height: 1.4rem;
}

[b-18cfs12pmw] .custom-range-date input[type="text"],
[b-18cfs12pmw] .custom-range-date input.k-input,
[b-18cfs12pmw] .custom-range-date input.k-dateinput,
[b-18cfs12pmw] .custom-range-date input.k-start,
[b-18cfs12pmw] .custom-range-date input.k-end,
[b-18cfs12pmw] .custom-range-date .k-input-inner,
[b-18cfs12pmw] .custom-range-date .k-input-wrap > input {
    color: transparent !important;
    text-shadow: none !important;
    caret-color: transparent !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

[b-18cfs12pmw] .custom-range-date .k-daterange-picker,
[b-18cfs12pmw] .custom-range-date .k-daterangepicker,
[b-18cfs12pmw] .custom-range-date .k-picker,
[b-18cfs12pmw] .custom-range-date .k-input,
[b-18cfs12pmw] .custom-range-date .k-picker-wrap,
[b-18cfs12pmw] .custom-range-date .k-picker-solid,
[b-18cfs12pmw] .custom-range-date .k-input-solid,
[b-18cfs12pmw] .custom-range-date .k-dropdown {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}


    [b-18cfs12pmw] .custom-range-date .k-picker::before,
    [b-18cfs12pmw] .custom-range-date .k-picker::after {
        border: none !important;
        box-shadow: none !important;
    }
.header-containers[b-18cfs12pmw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    background-color: var(--sita-off-white);
    flex-shrink: 0; /* toolbar must not grow — gantt area below it takes remaining height */
}

.left-sections[b-18cfs12pmw] {
    display: flex;
    align-items: center;
}

.right-sections[b-18cfs12pmw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0px;
}


[b-18cfs12pmw] .custom-range-date .k-daterange-picker,
[b-18cfs12pmw] .custom-range-date .k-daterangepicker {
    width: 87% !important;
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: flex-end !important;
    gap: var(--kendo-spacing-2, 0.5rem) !important;
}

.date-range-wrapper .custom-range-date input[type="text"][b-18cfs12pmw],
.date-range-wrapper .custom-range-date .k-input[b-18cfs12pmw] {
    color: transparent !important;
    text-shadow: 0 0 0 transparent !important;
    caret-color: transparent !important;
}
.toolbar-container[b-18cfs12pmw] {
    background: var(--primary-colours-white, #ffffff);
    border-style: solid;
    border-color: var(--primary-colours-light-gray, #c3c3c3);
    border-width: 1px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-shrink: 0;
    height: 40px;
    position: relative;
    align-items: center;
    gap: 0.25rem;
    border-radius: 4px;
}

    .toolbar-container img[b-18cfs12pmw] {
        width: 24px;
        height: 24px;
        display: block;
    }

.toolbar-containers[b-18cfs12pmw] {
    background: var(--primary-colours-white, #ffffff);
    border-style: solid;
    border-color: var(--primary-colours-light-gray, #c3c3c3);
    border-width: 1px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-shrink: 0;
    height: 40px;
    position: relative;
    align-items: center;
    gap: 0.25rem;
    padding: 0px 8px 0px 0px;
}


/* ── Date range container — tight, no gap ── */
.date-seq-container[b-18cfs12pmw] {
    padding: 0 8px;
    gap: 0;
    overflow: visible;
}

/* Hide the Telerik built-in calendar icon */
[b-18cfs12pmw] .dtp-no-icon .k-input-button {
    display: none !important;
}

/* Picker wrapper: shrink to content width */
[b-18cfs12pmw] .dtp-no-icon {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    width: auto !important;
    min-width: 0 !important;
    flex-shrink: 0;
}

    /* The inner k-dateinput host */
    [b-18cfs12pmw] .dtp-no-icon .k-dateinput,
    [b-18cfs12pmw] .dtp-no-icon .k-picker-wrap,
    [b-18cfs12pmw] .dtp-no-icon .k-picker-solid,
    [b-18cfs12pmw] .dtp-no-icon .k-input-solid {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
        min-width: 0 !important;
    }

    /* Input text: exact size for "dd/MM/yyyy HH:mm" */
    [b-18cfs12pmw] .dtp-no-icon .k-input-inner {
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #000000 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 118px !important; /* exact width for "dd/MM/yyyy HH:mm" at 13px */
        min-width: 0 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        caret-color: transparent !important;
        text-align: left;
    }

/* Separator — tight, no extra space */
.date-seq-sep[b-18cfs12pmw] {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    padding: 0 4px;
    pointer-events: none;
    flex-shrink: 0;
    line-height: 1;
    margin-left: -13px;
}

/* Custom calendar icon */
.date-seq-icon[b-18cfs12pmw] {
    width: 24px !important;
    height: 24px !important;
    cursor: pointer !important;
    margin-left: 6px;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
    align-items: center;
    gap: 0.25rem;
    border-radius:4px;
}

/* Telerik popup — Figma dark-blue styling */
[b-18cfs12pmw] .k-datetime-container .k-datetime-tabs .k-item.k-active .k-link,
[b-18cfs12pmw] .k-datetime-container .k-datetime-tabs .k-item.k-selected .k-link {
    background-color: #005485 !important;
    color: #fff !important;
    border-radius: 4px 4px 0 0;
}

[b-18cfs12pmw] .k-datetime-container .k-actions .k-button-solid-primary {
    background-color: #005485 !important;
    border-color: #005485 !important;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
}

[b-18cfs12pmw] .k-datetime-container .k-actions .k-button-solid-base {
    border-color: #005485 !important;
    color: #005485 !important;
    text-transform: uppercase;
    font-weight: 600;
}

[b-18cfs12pmw] .k-calendar td.k-selected .k-link {
    background-color: #005485 !important;
    color: #fff !important;
}

.utc .utc-time[b-18cfs12pmw] {
    color: var(--primary-colours-sita-blue, #005485);
    text-decoration: underline;
    font-weight: bolder;
}

.more-wrapper[b-18cfs12pmw] {
    position: relative;
    display: inline-block;
    padding: 8px;
}

.more-popup[b-18cfs12pmw] {
    position: absolute;
    right: 0;
    top: calc(100% + 1px);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    padding: 6px 0;
    z-index: 3000;
    min-width: 200px;
    max-width: 320px;
}

.more-list[b-18cfs12pmw] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.more-item[b-18cfs12pmw] {
    padding: 10px 16px;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    font-size: 14px;
}

    .more-item:hover[b-18cfs12pmw] {
        background: #f3f6f9;
        font-weight: bold;
    }
/* _content/Acdm.UI.AirsideOptimizer/Pages/DeicingPlanner/Dialogs/DeicingManualResources.razor.rz.scp.css */
/* ── Ice Confirm Dialog ─────────────────────────────────────── */
.ice-confirm-dialog[b-ze19zu4ypl] {
    padding: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Flight summary row */
.ice-confirm-flight-row[b-ze19zu4ypl] {
    display: flex;
    flex-direction: row;
    gap: 0;
    background: #f4f6f8;
    border-radius: 4px;
    padding: 12px 16px;
}

.ice-confirm-cell[b-ze19zu4ypl] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 16px;
}

    .ice-confirm-cell:last-child[b-ze19zu4ypl] {
        padding-right: 0;
    }

.ice-confirm-cell-label[b-ze19zu4ypl] {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ice-confirm-cell-value[b-ze19zu4ypl] {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* ── Truck picker ─────────────────────────────────────────────── */
.ice-confirm-truck-section[b-ze19zu4ypl] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ice-confirm-truck-label[b-ze19zu4ypl] {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

/* Wrapper — border drawn here; multiselect strips its own border */
.ice-confirm-multiselect-wrapper[b-ze19zu4ypl] {
    position: relative; /* anchors the absolute + button  */
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
}

    /* Strip Telerik's own border/shadow so the wrapper border is the only one */
    .ice-confirm-multiselect-wrapper[b-ze19zu4ypl]  .k-multiselect {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        flex: 1;
        min-width: 0;
        padding-right: 32px; /* leave room for the + button */
    }

/* The + button — absolutely positioned on the right inside the wrapper */
.ice-confirm-multiselect-plus[b-ze19zu4ypl] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #444;
    cursor: pointer;
    user-select: none;
    pointer-events: all;
    padding: 2px 4px;
}

    .ice-confirm-multiselect-plus:hover[b-ze19zu4ypl] {
        color: #005485;
    }

/* Action buttons */
.ice-confirm-actions[b-ze19zu4ypl] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding-top: 4px;
}

.ice-confirm-btn[b-ze19zu4ypl] {
    height: 38px;
    min-width: 120px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.5px;
    border: none;
    transition: background 0.15s ease;
}

    .ice-confirm-btn:focus:not(:focus-visible)[b-ze19zu4ypl] {
        outline: none;
        box-shadow: none;
    }

    .ice-confirm-btn:focus-visible[b-ze19zu4ypl] {
        outline: 2px solid #005485;
        outline-offset: 2px;
    }

.ice-confirm-btn--primary[b-ze19zu4ypl] {
    background: #005485;
    color: #fff;
}

    .ice-confirm-btn--primary:hover[b-ze19zu4ypl] {
        background: #003e63;
    }

.ice-confirm-btn--secondary[b-ze19zu4ypl] {
    background: #fff;
    color: #005485;
    border: 1px solid #005485;
}

    .ice-confirm-btn--secondary:hover[b-ze19zu4ypl] {
        background: #f0f4f8;
    }
/* _content/Acdm.UI.AirsideOptimizer/Pages/EuroControl/Components/EuroControlMetrics.razor.rz.scp.css */

.metrics-cards[b-yooa5uu82w] {
    width: 95%;
    height: 80%;
    overflow: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 25px;
}

.metric-details[b-yooa5uu82w] {
    display: flex;
    flex-direction: row;
    border-bottom: .5px solid black;
}

.metric-key[b-yooa5uu82w] {
    text-align: right;
    font-weight: bold;
    width: 35%;
}

.metric-value[b-yooa5uu82w] {
    text-align: right;
    font-weight: 500;
    padding-left: 10px;
}

[b-yooa5uu82w] .k-card-title {
    text-align: center !important;
    background-color: lightgray;
    padding: 20px;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/EuroControl/Components/FlightDataSubscriptionConfigurations.razor.rz.scp.css */
.divItems[b-7uos9282vs] {
    height: 30px;
    float: left !important;
    width: 200px !important;
}

.formContainer[b-7uos9282vs] {
    height: 90%;
    overflow: auto;
    width: 95%;
}


.tagsinput[b-7uos9282vs], .tagsinput *[b-7uos9282vs] {
    box-sizing: border-box
}

.tagsinput[b-7uos9282vs] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #fff;
    font-size: 14px;
    line-height: 20px;
    color: #556270;
    padding: 5px 5px 0;
    border: 1px solid #e6e6e6;
    border-radius: 2px
}

    .tagsinput.focus[b-7uos9282vs] {
        border-color: #ccc
    }

    .tagsinput .tag[b-7uos9282vs] {
        position: relative;
        background: lightgrey;
        display: block;
        max-width: 100%;
        word-wrap: break-word;
        color: black;
        padding: 5px 30px 5px 5px;
        border-radius: 2px;
        margin: 0 5px 5px 0
    }

        .tagsinput .tag .tag-remove[b-7uos9282vs] {
            position: absolute;
            background: 0 0;
            display: block;
            width: 30px;
            height: 30px;
            top: 0;
            right: 0;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            color: #ff6b6b;
            line-height: 30px;
            padding: 0;
            border: 0
        }

            .tagsinput .tag .tag-remove[b-7uos9282vs]:after, .tagsinput .tag .tag-remove[b-7uos9282vs]:before {
                background: #ff6b6b;
                position: absolute;
                display: block;
                width: 10px;
                height: 2px;
                top: 14px;
                left: 10px;
                content: ''
            }

            .tagsinput .tag .tag-remove[b-7uos9282vs]:before {
                -webkit-transform: rotateZ(45deg);
                transform: rotateZ(45deg)
            }

            .tagsinput .tag .tag-remove[b-7uos9282vs]:after {
                -webkit-transform: rotateZ(-45deg);
                transform: rotateZ(-45deg)
            }

    .tagsinput div[b-7uos9282vs] {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

        .tagsinput div input[b-7uos9282vs] {
            background: 0 0;
            display: block;
            width: 100%;
            font-size: 14px;
            line-height: 20px;
            padding: 5px;
            border: 0;
            margin: 0 5px 5px 0
        }

            .tagsinput div input:focus[b-7uos9282vs] {
                color: #495057;
                background-color: #fff;
                border-color: #80bdff;
                outline: 0;
                box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
            }

            .tagsinput div input.error[b-7uos9282vs] {
                color: #ff6b6b
            }

            .tagsinput div input[b-7uos9282vs]::-ms-clear {
                display: none
            }

            .tagsinput div input[b-7uos9282vs]::-webkit-input-placeholder {
                color: #ccc;
                opacity: 1
            }

            .tagsinput div input:-moz-placeholder[b-7uos9282vs] {
                color: #ccc;
                opacity: 1
            }

            .tagsinput div input[b-7uos9282vs]::-moz-placeholder {
                color: #ccc;
                opacity: 1
            }

            .tagsinput div input:-ms-input-placeholder[b-7uos9282vs] {
                color: #ccc;
                opacity: 1
            }

.form-group[b-7uos9282vs] {
    width: 95% !important
}


.col-form-label[b-7uos9282vs] {
    width: 100% !important
}

.inputfield[b-7uos9282vs] {
    padding-left: 0px !important
}
.sm-font[b-7uos9282vs] {
    width: 100% !important;
    font-size: 13px;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/EuroControl/Components/FlightListConfigurations.razor.rz.scp.css */
.divItems[b-33ghi8hfy1] {
    height: 30px;
    float: left !important;
    width: 200px !important;
}

.formContainer[b-33ghi8hfy1] {
    height: 90%;
    overflow: auto;
    width: 95%;
}


.tagsinput[b-33ghi8hfy1], .tagsinput *[b-33ghi8hfy1] {
    box-sizing: border-box
}

.tagsinput[b-33ghi8hfy1] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #fff;
    font-size: 14px;
    line-height: 20px;
    color: #556270;
    padding: 5px 5px 0;
    border: 1px solid #e6e6e6;
    border-radius: 2px
}

    .tagsinput.focus[b-33ghi8hfy1] {
        border-color: #ccc
    }

    .tagsinput .tag[b-33ghi8hfy1] {
        position: relative;
        background: lightgrey;
        display: block;
        max-width: 100%;
        word-wrap: break-word;
        color: black;
        padding: 5px 30px 5px 5px;
        border-radius: 2px;
        margin: 0 5px 5px 0
    }

        .tagsinput .tag .tag-remove[b-33ghi8hfy1] {
            position: absolute;
            background: 0 0;
            display: block;
            width: 30px;
            height: 30px;
            top: 0;
            right: 0;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            color: #ff6b6b;
            line-height: 30px;
            padding: 0;
            border: 0
        }

            .tagsinput .tag .tag-remove[b-33ghi8hfy1]:after, .tagsinput .tag .tag-remove[b-33ghi8hfy1]:before {
                background: #ff6b6b;
                position: absolute;
                display: block;
                width: 10px;
                height: 2px;
                top: 14px;
                left: 10px;
                content: ''
            }

            .tagsinput .tag .tag-remove[b-33ghi8hfy1]:before {
                -webkit-transform: rotateZ(45deg);
                transform: rotateZ(45deg)
            }

            .tagsinput .tag .tag-remove[b-33ghi8hfy1]:after {
                -webkit-transform: rotateZ(-45deg);
                transform: rotateZ(-45deg)
            }

    .tagsinput div[b-33ghi8hfy1] {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

        .tagsinput div input[b-33ghi8hfy1] {
            background: 0 0;
            display: block;
            width: 100%;
            font-size: 14px;
            line-height: 20px;
            padding: 5px;
            border: 0;
            margin: 0 5px 5px 0
        }

            .tagsinput div input:focus[b-33ghi8hfy1] {
                color: #495057;
                background-color: #fff;
                border-color: #80bdff;
                outline: 0;
                box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
            }

            .tagsinput div input.error[b-33ghi8hfy1] {
                color: #ff6b6b
            }

            .tagsinput div input[b-33ghi8hfy1]::-ms-clear {
                display: none
            }

            .tagsinput div input[b-33ghi8hfy1]::-webkit-input-placeholder {
                color: #ccc;
                opacity: 1
            }

            .tagsinput div input:-moz-placeholder[b-33ghi8hfy1] {
                color: #ccc;
                opacity: 1
            }

            .tagsinput div input[b-33ghi8hfy1]::-moz-placeholder {
                color: #ccc;
                opacity: 1
            }

            .tagsinput div input:-ms-input-placeholder[b-33ghi8hfy1] {
                color: #ccc;
                opacity: 1
            }

.form-group[b-33ghi8hfy1] {
    width:95% !important;

}

.col-form-label[b-33ghi8hfy1] {
    width: 100% !important
}
.inputfield[b-33ghi8hfy1]{padding-left:0px !important}
/* _content/Acdm.UI.AirsideOptimizer/Pages/EuroControl/EuroControl.razor.rz.scp.css */
/* _content/Acdm.UI.AirsideOptimizer/Pages/FAA/FAA.razor.rz.scp.css */
/* _content/Acdm.UI.AirsideOptimizer/Pages/Flights/FlightGridRouteHopsTooltips.razor.rz.scp.css */
.flight-route-hops-tooltip-vertical-template[b-jamr91cs2l] {
    padding: 20px;
}

.flight-route-hops-tooltip-vertical-body[b-jamr91cs2l] {
    padding-top: 12px;
}

ol[b-jamr91cs2l] {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 0;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Flights/Flights.razor.rz.scp.css */
[b-9vj5mk98mf] .flight-button-group {
    background-color: #005485 !important;
    width: 35px;
    height: 35px;
    margin: auto;
}

    [b-9vj5mk98mf] .flight-button-group:hover {
        opacity: 0.3;
    }

[b-9vj5mk98mf] .flight-button-group-active {
    background-color: white !important;
    border-color: #005485 !important;
    border-width: 1px;
}

[b-9vj5mk98mf] .flight-th {
    background-color: #00A2FF !important;
    text-align: center !important;
    justify-content: center;
    color: white;
    text-transform: Uppercase;
}

[b-9vj5mk98mf] .flight-dd-th {
    min-width: 175px;
}

[b-9vj5mk98mf] .flight-dt-th {
    min-width: 200px;
}

[b-9vj5mk98mf] .flight-fn-th {
    min-width: 275px;
}

.flight-options[b-9vj5mk98mf] {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.flight-groups[b-9vj5mk98mf] {
    height: 10%;
}

.flight-details[b-9vj5mk98mf] {
    height: 80%;
    overflow: auto;
    width: 100%;
}


.flightscontainer[b-9vj5mk98mf] {
    height: 80%;
    overflow: auto;
}


/*override telerik styles*/
[b-9vj5mk98mf] .k-toolbar-spacer {
    justify-content: center;
}

[b-9vj5mk98mf] .k-button-solid-base-background {
    background-color: #005485 !important;
    color: white !important;
}

[b-9vj5mk98mf] .k-selected {
    border-color: #4CAF50 !important;
}

.flight-options-button[b-9vj5mk98mf] {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.flight-options-button-label[b-9vj5mk98mf] {
    color: #005485;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Open Sans';
    text-transform: Uppercase;
}

.flight-options-button-label-active[b-9vj5mk98mf] {
    color: #005485;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Open Sans';
    text-transform: Uppercase;
    text-decoration-line: underline;
}

.btn-gridSettings[b-9vj5mk98mf] {
    padding: 0px;
    color: #005485;
}

.img-style[b-9vj5mk98mf] {
    padding-right: 5px;
    height: 20px;
}

[b-9vj5mk98mf] .k-grid-header .k-i-sort-asc-sm,
[b-9vj5mk98mf] .k-grid-header .k-i-sort-desc-sm,
[b-9vj5mk98mf] .k-grid-header .k-i-sort-asc-small,
[b-9vj5mk98mf] .k-grid-header .k-i-sort-desc-small,
[b-9vj5mk98mf] .k-grid-header .k-sort-order {
    color: white !important;
}

[b-9vj5mk98mf] .k-button-flat-primary {
    color: unset !important;
}

[b-9vj5mk98mf] .k-pager-numbers .k-link:hover, .k-pager-numbers .k-link.k-hover[b-9vj5mk98mf] {
    color: black !important;
    background-color: rgba(0,0,0, 0.1) !important;
}

[b-9vj5mk98mf] .k-pager-numbers .k-link {
    color: black !important;
}

    [b-9vj5mk98mf] .k-pager-numbers .k-link.k-selected {
        color: black !important;
        background-color: rgba(0,0,0, 0.2) !important;
    }


[b-9vj5mk98mf] .k-grid tbody > tr:not(.k-detail-row):hover,
[b-9vj5mk98mf] .k-grid tbody > tr:not(.k-detail-row).k-hover {
    background-color: rgba(0, 162, 255, 0.45) !important;
}

[b-9vj5mk98mf] .k-master-row:hover .k-grid-content-sticky,
[b-9vj5mk98mf] .k-master-row:hover .k-grid-row-sticky,
[b-9vj5mk98mf] .k-master-row.k-hover .k-grid-content-sticky,
[b-9vj5mk98mf] .k-master-row.k-hover .k-grid-row-sticky {
    background-color: rgba(0, 162, 255, 0.45) !important;
}

[b-9vj5mk98mf] .k-button-icon {
    height: 20px !important;
    width: 20px !important;
}

[b-9vj5mk98mf] .k-grid-toolbar {
    flex-wrap: nowrap;
}

[b-9vj5mk98mf] .grid-pagecount {
    display: inline-block;
    margin-top: auto;
}

[b-9vj5mk98mf] .grid-pagecount-label {
    margin-right: 5px;
    vertical-align: middle;
}

.uneditable[b-9vj5mk98mf] {
    text-align: center;
}

[b-9vj5mk98mf] col {
    min-width: 125px !important;
}

[b-9vj5mk98mf] .k-command-cell span {
    display: flex;
}

[b-9vj5mk98mf] .flight-grid-route-hops-cell:hover {
    text-decoration: underline;
    cursor: pointer;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Map/Components/MapTab.razor.rz.scp.css */
.control-section[b-24p8h7mqrr] {
    height: 90%;
    overflow: auto;
}

.control-section-multipleviews[b-24p8h7mqrr] {
    height: 100%;
    overflow: auto;
}

.map-info-row[b-24p8h7mqrr] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 98%;
    margin: auto;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Map/Components/Modal_AddMarker.razor.rz.scp.css */
.fielddiv[b-uefl7g7tsb] {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    padding-right: 10px;
    padding-left: 10px;
    min-width: 150px;
}

.fieldgroup[b-uefl7g7tsb] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
    justify-content: space-evenly;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Map/Map.razor.rz.scp.css */


.mapcontainer[b-s811qm1kda] {
    height: 80%;
    overflow: auto;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/ResourceData/DeIce/DeicingDurationByAircraftType/Dialogs/DeicingDurationByAircraftTypeCreateUpdateDialog.razor.rz.scp.css */
/*#region Mini Procedures Grid Header Overrides*/
[b-sbfxbncc3e] .mini-procedures-grid.k-grid {
    --cell-padding-y: 6px;
    --cell-padding-x: 8px;
}

[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-grid-header,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-grid-header-wrap,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table thead,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table-thead {
    background: var(--primary-colours-sita-light-blue) !important;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
    border-right: 0 !important;
    box-shadow: none !important;
}

[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table-thead th,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table thead th,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table-thead .k-header,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-header {
    background: transparent !important;
    color: var(--primary-colours-sita-white) !important;
    border: none !important;
    padding: 10px 12px;
}

[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table-thead th + th,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table thead th + th,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-header + .k-header {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, .35);
}

[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table-thead th:last-child,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-table thead th:last-child,
[b-sbfxbncc3e] .mini-procedures-grid.k-grid .k-header:last-child {
    box-shadow: none !important;
}
/*#endregion Mini Procedures Grid Header Overrides*/
/*#region Telerik Form*/
.k-form .k-form-legend[b-sbfxbncc3e] {
    border: none !important;
    color: var(--primary-colours-sita-black) !important;
    font-family: "Titillium Web" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 18px !important;
    text-transform: none !important;
    margin-bottom: 8px !important;
}

.section-title[b-sbfxbncc3e] {
    border: none !important;
    color: var(--primary-colours-sita-black) !important;
    font-family: "Titillium Web" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 18px !important;
    text-transform: none !important;
    margin-bottom: 8px !important;
}
/*#endregion Telerik Form*/
/* _content/Acdm.UI.AirsideOptimizer/Pages/ResourceData/Dialogs/RunwayHandoverPointCreateUpdateDialog.razor.rz.scp.css */
.form-group .atc-coordination-toggle-label[b-yn20edpx4l] {
    color: var(--primary-colours-sita-black) !important;
    font-family: "Titillium Web" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 18px !important;
}

[b-yn20edpx4l] .runway-hop-informational-message {
    color: var(--primary-colours-sita-black) !important;
    font-family: "Open Sans" !important;
    font-size: 16px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 18px !important;
}

.runway-hop-informational-wrapper[b-yn20edpx4l] {
    padding: 12px !important;
    gap: 10px !important;
    border-radius: 4px !important;
    background: var(--primary-colours-sita-lighter-grey) !important;
    margin: 0 0 1em !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/ResourceData/Dialogs/StandardInstrumentDepartureCreateUpdateDialog.razor.rz.scp.css */
[b-quhs95h98q] .k-listbox {
    height: 300px !important;
}

[b-quhs95h98q] .k-listbox-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-right: 30px !important;
}

[b-quhs95h98q] .k-svg-i-caret-double-alt-left,
[b-quhs95h98q] .k-svg-i-caret-double-alt-right,
[b-quhs95h98q] .k-svg-i-caret-alt-left,
[b-quhs95h98q] .k-svg-i-caret-alt-right {
    transform: rotate(180deg) !important;
}

[b-quhs95h98q] .listbox-left {
    width: 313px !important;
    padding-right: 30px !important;
    gap: 0px !important;
}

[b-quhs95h98q] .listbox-right {
    width: 343px !important;
    gap: 0px !important;
}

[b-quhs95h98q] .listbox-right-header {
    position:absolute !important;
    padding-left: 375px !important;
}

[b-quhs95h98q] .k-list-item p {
    margin: 0px !important;
}

[b-quhs95h98q] .sid-selection-label {
    color: var(--primary-colours-sita-black) !important;
    font-family: "Titillium Web" !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 18px !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/ResourceData/ResourceData.razor.rz.scp.css */
[b-5d4fh35vjv] .rz-sidebar-expanded {
    width: 270px !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/ResourceData/ResourceDataGridToolBarContent.razor.rz.scp.css */
[b-juza164joz] .resourcedata-gridcommandbutton-telerik-override {
    border: none;
    color: var(--primary-colours-sita-blue);
}

[b-juza164joz] .resourcedata-gridcommandbutton-telerik-override:hover {
    text-decoration: underline;
}

[b-juza164joz] .resourcedata-searchbox-telerik-override {
    display: flex !important;
    flex-direction: row-reverse !important;
    height: 40px;
    padding: 0 12px;
}

[b-juza164joz] .resourcedata-add-icon-wrapper {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 20px;
    background: var(--primary-colours-sita-blue);
    margin-right: 12px !important
}

[b-juza164joz] .csv-btn {
    padding-right: 16px
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Rules/FieldOperatorValueGroup.razor.rz.scp.css */
.rules-form[b-9sviub5320] {
    border-radius: 4px !important;
    border: 1px solid var(--primary-colours-sita-light-grey) !important;
    background: var(--primary-colours-sita-lighter-grey) !important;
    padding: 12px !important;
}

[b-9sviub5320] .use-custom-value-container.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none; /* ✅ blocks click */
}

    [b-9sviub5320] .use-custom-value-container.disabled img {
        filter: grayscale(100%);
    }
/* _content/Acdm.UI.AirsideOptimizer/Pages/Rules/RuleConfiguration.razor.rz.scp.css */
[b-3hp349g7vo] .operator-divider {
    color: var(--primary-colours-sita-grey) !important;
    text-align: center !important;
    font-family: "Open Sans" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 14px !important;
}

[b-3hp349g7vo] .rule-description {
    color: var(--primary-colours-sita-black) !important;
    font-family: "Titillium Web" !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 20px !important;
}

[b-3hp349g7vo] .rule-panel-label {
    color: var(--primary-colours-sita-black) !important;
    font-family: "Open Sans" !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 14px !important;
}

[b-3hp349g7vo] .rule-panel-activated-label {
    color: var(--primary-colours-sita-black) !important;
    font-family: "Open Sans" !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 20px !important;
}

[b-3hp349g7vo] .condition-divider {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 20px !important;
    align-self: stretch !important;
    border-radius: 0 4px 4px 0 !important;
    border-left: 1px solid var(--primary-colours-sita-light-grey) !important;
}

[b-3hp349g7vo] .hide-legend .k-form-legend {
    display: none !important;
}

.rules-card-title[b-3hp349g7vo] {
    color: var(--primary-colours-sita-black) !important;
    font-family: "Open Sans" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 18px !important;
}

[b-3hp349g7vo] .rule-informational-message {
    font-family: "Open Sans" !important;
    font-size: 16px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 18px !important;
}

.rule-informational-wrapper[b-3hp349g7vo] {
    padding: 12px !important;
    gap: 10px !important;
    border-radius: 4px !important;
    background: var(--primary-colours-sita-lighter-grey) !important;
    margin: 0 0 1em !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Rules/RuleDetails.razor.rz.scp.css */
[b-ie39qyrbg0] .rule-details-header {
    font-family: "Titillium Web" !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Rules/RulesDashboard.razor.rz.scp.css */
[b-7xfih5kgwf] .rz-sidebar-expanded {
    width: 304px !important;
}

[b-7xfih5kgwf] .rz-body {
    overflow: hidden !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/RunwayRules/Components/AddRunwayConceptModal.razor.rz.scp.css */
[b-6l0867n6uk] .k-colorpicker,
[b-6l0867n6uk] .k-colorpicker:hover,
[b-6l0867n6uk] .k-colorpicker:active,
[b-6l0867n6uk] .k-colorpicker:focus,
[b-6l0867n6uk] .k-colorpicker:focus-within {
    box-shadow: none !important
}

[b-6l0867n6uk] .concept-modal-runway-diagram .runway-layout-diagram {
    border-radius: 4px !important;
    border: 1px solid var(--primary-colours-sita-light-grey) !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/RunwayRules/Components/RunwayConcept.razor.rz.scp.css */
/**
 * <copyright file="RunwayConcept.razor.css" company="SITA INC Ireland Ltd">
 *      Copyright © SITA INC Ireland Ltd 2024. Confidential. All rights reserved.
 * </copyright>
 */

[b-0eo5jzc7jk] .k-card-title {
    text-align: center !important;
    background-color: lightgray;
    padding: 20px;
}

.runway-concept-card[b-0eo5jzc7jk] {
    min-height: 250px
}

.vs[b-0eo5jzc7jk] {
    height: 68px top: 380px left: 279px border: 1px angle: 0 deg;
    border: 1px solid #C3C3C3;
}

.name[b-0eo5jzc7jk] {
    margin-bottom: 10%;
    font-size: 17px;
}

.vl[b-0eo5jzc7jk] {
    border-right: 1px solid #C3C3C3;
    height: 100%;
    max-width:10%;
}

.no-allday .k-scheduler-head .k-scheduler-group:last-child[b-0eo5jzc7jk] {
    height: 0px;
}

.no-allday .k-scheduler-times-all-day[b-0eo5jzc7jk] {
    display: none;
}

.k-scheduler-fullday[b-0eo5jzc7jk] {
    visibility: hidden;
}

.k-event[b-0eo5jzc7jk]{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    height:100%;
    width:100%;
    box-shadow:none !important;
}

.k-scheduler-head[b-0eo5jzc7jk] {
    background-color: #00A2FF !important;
    color: #FFFFFF;
}

.k-scheduler-cell.k-resource-cell.k-group-cell.k-heading-cell[b-0eo5jzc7jk] {
    background-color: #00A2FF;
}

button.telerik-blazor.k-button.k-group-start.k-group-end.k-button-solid.k-rounded-md.k-button-rectangle.k-button-md.k-button-solid-base.k-selected[b-0eo5jzc7jk] {
    display: none;
}

.k-event[b-0eo5jzc7jk] {
    background-color: #C61D23
}

.rz-button.btn-danger[b-0eo5jzc7jk], .btn-danger.rz-paginator-element[b-0eo5jzc7jk] {
    background-color: #C61D23;
    color: #ffffff;
}

.k-button-solid-base.k-selected[b-0eo5jzc7jk] {
    border-color: #005485;
    color: white;
    background-color: #005485;
}

.k-calendar .k-calendar-td.k-selected .k-calendar-cell-inner[b-0eo5jzc7jk], .k-calendar .k-calendar-td.k-selected .k-link[b-0eo5jzc7jk] {
    border-color: rgba(0, 0, 0, 0.08);
    color: #ffffff;
    background-color: #005485;
}

.k-calendar .k-nav-today[b-0eo5jzc7jk], .k-calendar .k-calendar-nav-today[b-0eo5jzc7jk] {
    color: #005485 !important;
}

.k-time-header .k-time-now[b-0eo5jzc7jk], .k-time-selector-header .k-time-now[b-0eo5jzc7jk] {
    color: #005485 !important;
}

button.telerik-blazor.k-button.k-form-submit.k-button-solid.k-rounded-md.k-button-rectangle.k-button-md.k-button-solid-primary[b-0eo5jzc7jk] {
    visibility: hidden;
}

.two-line-truncation[b-0eo5jzc7jk] {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.page-sub-header[b-0eo5jzc7jk] {
    font-family: "Titillium Web";
    font-size: 24px;
    font-weight: 600;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Runways/Components/CalendarComponent.razor.rz.scp.css */

.overlay[b-3f83l84z55] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 10;
}

.calendar-popup[b-3f83l84z55] {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 20;
}

.formatted-date[b-3f83l84z55] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.calendar-icon[b-3f83l84z55] {
    margin-right: 0.5rem;
}

.selected-day[b-3f83l84z55] {
    background-color: #005485;
    color: white;
    border-radius: 50%;
}

.outside-month[b-3f83l84z55] {
    color: #ccc;
}

.calendar-popup td:hover[b-3f83l84z55] {
    background-color: #f0f0f0;
    border-radius: 50%;
}

thead th[b-3f83l84z55] {
    position: sticky;
    top: 0;
    z-index: 1;
}

thead[b-3f83l84z55] {
    background-color: #007bff;
    color: white;
}

th[b-3f83l84z55], td[b-3f83l84z55] {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: center;
}


    td.timeline[b-3f83l84z55] {
        padding: 0px !important;
    }
/* _content/Acdm.UI.AirsideOptimizer/Pages/Runways/Components/CustomScheduler.razor.rz.scp.css */

/* Today Box Styles */
.today-container[b-aghlzs0kz6] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.today-button[b-aghlzs0kz6], .arrow-button[b-aghlzs0kz6] {
    color: #00548;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    border-color: #005485;
    border-width: .1rem;
}
.scheduler-header[b-aghlzs0kz6]{
top:0; position: sticky;z-index: 3;
}
/* Table-like Scheduler Styles */
.scheduler-table-wrapper[b-aghlzs0kz6] {
    width: 100%;
    overflow: scroll;
    height:350px;
}

.scheduler-table[b-aghlzs0kz6] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}



/* Fixing the group header */
.group-header[b-aghlzs0kz6], .group-name[b-aghlzs0kz6] {
    position: sticky;
    left: -1px;
    background-color: white;
    z-index: 2; /* Make sure it stays on top of other content */
    text-align: left;
    vertical-align: top;
    width: 195px; /* Updated width using CSS */
}

.hour-cell[b-aghlzs0kz6] {
    width: 8rem;
}

.group-name[b-aghlzs0kz6] {
    font-weight: bold;
    padding-right: 1rem;
    white-space: nowrap;
    vertical-align: middle;
}

.timeline[b-aghlzs0kz6] {
    position: relative;
    height: auto;
    overflow: hidden;
    border: 1px solid #ccc;
}

.timeline-wrapper[b-aghlzs0kz6] {
    position: relative;
    display: grid; /* Use CSS grid to create the hourly cells */
    grid-template-columns: repeat(24, 1fr); /* Create 24 equal columns for each hour */
    height: 2rem; /* Set the height of the row */
}

.hour-cell-background[b-aghlzs0kz6] {
    border-right: 1px solid #e0e0e0; /* Draw lines between hours */
    background-color: #f9f9f9; /* Light background color for hours */
    height: 100%; /* Ensure it fills the timeline height */
}

/* Update the event-row to be positioned over the grid */
.event-row[b-aghlzs0kz6] {
    position: absolute; /* Position it over the grid background */
    top: 0;
    left: 0;
    width: 100%;
    height: 2rem;
    display: flex;
}

.event-item[b-aghlzs0kz6] {
    position: absolute;
    height: 28px !important;
    overflow: hidden;
    white-space: nowrap;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border-radius: 0.25rem;
    line-height: 2rem;
    left: 0; /* This is dynamically calculated in inline style */
}

    .event-item.dragging[b-aghlzs0kz6] {
        cursor: move;
        opacity: 0.5;
        border: 2px dashed #007bff;
    }

/* Ensure the table header scrolls with the content */
.group-header-background[b-aghlzs0kz6] {
    background-color: #007bff;
}
thead th[b-aghlzs0kz6] {
    position: sticky;
    top: 0;
    z-index: 1;
}

thead[b-aghlzs0kz6] {
    background-color: #007bff;
    color: white;
}

th[b-aghlzs0kz6], td[b-aghlzs0kz6] {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: center;
}


    td.timeline[b-aghlzs0kz6] {
        padding: 0px !important;
    }
/* _content/Acdm.UI.AirsideOptimizer/Pages/Runways/Runways.Razor.rz.scp.css */
/* _content/Acdm.UI.AirsideOptimizer/Pages/Settings/DeletePopUp.razor.rz.scp.css */
.modal-body-cus[b-05p2izr91q] {
    top: 363px;
    left: 767px;
    width: 387px;
    height: 120px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    opacity: 1;
}

.modal-id[b-05p2izr91q] {
    width: 323px;
    display: inline-block;
    margin: 5% auto;
    background: #DCDCDC 0% 0% no-repeat padding-box;
    opacity: 1;
    padding-top:10px;
    height:40%;
}

.modal-id-data[b-05p2izr91q] {
    width: 156px;
    height: 33px;
    margin: 10% auto;
    display: inline-block;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #B6B6AE;
    opacity: 1;
}

.modal-data-text[b-05p2izr91q] {
    text-align: center;
    font-style: italic;
    letter-spacing: 0.14px;
    color: #000000;
    opacity: 1;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Settings/Tabs/MapMarkers.razor.rz.scp.css */

.mapmarkers[b-0qn9w482pr] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
}

.mapMarkersContainer[b-0qn9w482pr] {
    max-height: 95%;
    min-width: 75%;
}

.mapMarkersData[b-0qn9w482pr] {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    height: 90%;
    overflow: auto;
}



.dataHeader[b-0qn9w482pr] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.addDataDiv[b-0qn9w482pr] {
    margin-right: 0px;
}

.mapMarkersRow[b-0qn9w482pr] {
    display: flex;
    justify-content: space-around;
}

.field-div[b-0qn9w482pr] {
    text-align: left;
    padding: 3px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
}

.field-lbl[b-0qn9w482pr] {
    margin-right: 3px;
    font-size: 14px;
}

.button-div[b-0qn9w482pr] {
    text-align: left;
    padding: 3px;
    margin-right: 10px;
    margin-top: auto;
    min-width: 150px;
}

.button-marker[b-0qn9w482pr] {
    background-color: transparent !important;
}

/*overriding radzen datalist spacing*/
[b-0qn9w482pr] .rz-datalist-data {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    border-bottom: 1pt solid black;
}

    [b-0qn9w482pr] .rz-datalist-data > li {
        border: 0px !important;
    }

[b-0qn9w482pr] .rz-button.btn-light:not(.btn-outline-light):not(.btn-secondary):hover {
    background-color: transparent !important;
}

[b-0qn9w482pr] .rz-button.btn-light:not(.btn-outline-light):not(.btn-secondary) {
    background-color: transparent !important;
}

[b-0qn9w482pr] img.rz-button-icon-left {
    height: 20px !important;
}

[b-0qn9w482pr] .rz-button-md {
    padding: 0px 10px 0px 10px !important;
}
/* _content/Acdm.UI.AirsideOptimizer/Pages/Settings/Tabs/ViewPorts.razor.rz.scp.css */

.viewportcontainer[b-disb6lh56e] {
    max-height: 90%;
    overflow: auto;
    min-width: 75%;
    margin-right: 25px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 8px;
}

.viewports[b-disb6lh56e] {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.viewportsData[b-disb6lh56e] {
    /*background-color: #ffffff;
    border-radius: 8px;*/
    padding: 5px 15px 15px 15px;
}

.viewportsInstruction[b-disb6lh56e] {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.viewportdatacontainers[b-disb6lh56e] {
    display: flex;
    flex-direction: column;
}

.dataHeader[b-disb6lh56e] {
    /* margin-bottom: 15px;*/
    padding: 15px 15px 0px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.addDataDiv[b-disb6lh56e] {
    margin-right: 0px;
}

/*overriding radzen datalist spacing*/
[b-disb6lh56e] .rz-datalist-data {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    border-bottom: 1pt solid black;
}

[b-disb6lh56e] .rz-datalist-data > li {
    border: 0px !important;
}

[b-disb6lh56e] .rz-button.btn-light:not(.btn-outline-light):not(.btn-secondary):hover {
    background-color: transparent !important;
}

[b-disb6lh56e] .rz-button.btn-light:not(.btn-outline-light):not(.btn-secondary) {
    background-color: transparent !important;
}

[b-disb6lh56e] img.rz-button-icon-left {
    height: 20px !important;
}

[b-disb6lh56e] .rz-button-md {
    padding: 0px 10px 0px 10px !important;
}

.viewportsRow[b-disb6lh56e] {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.field-div[b-disb6lh56e] {
    text-align: left;
    padding: 3px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
}

.field-lbl[b-disb6lh56e] {
    margin-right: 3px;
    font-size: 14px;
}

.button-div[b-disb6lh56e] {
    text-align: left;
    padding: 3px;
    margin-right: 10px;
    margin-top: auto;
    min-width: 150px;
}

.button-viewport[b-disb6lh56e] {
    background-color: transparent !important;
}

.instructionImage[b-disb6lh56e] {
    margin: auto;
}

.instructionText[b-disb6lh56e] {
    font-size: 14px;
    margin: auto;
    text-align: center;
    padding: 10px;
}

.osmmarker[b-disb6lh56e] {
    color: #005485 !important;
    font-size: 1rem !important;
    text-decoration: underline;
}

.osmmarker:hover[b-disb6lh56e] {
    cursor: pointer;
}
/* _content/Acdm.UI.AirsideOptimizer/Shared/Components/AuditRecordsOverview.razor.rz.scp.css */
.audit-link[b-4q8v70a6gn] {
    color: var(--primary-colours-sita-blue);
    font-family: Saans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
/* _content/Acdm.UI.AirsideOptimizer/Shared/Components/ConfirmWindow.razor.rz.scp.css */
.confirm-widow-value[b-xkzhcjvuwd] {
    max-width: 1000px
}
