@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.olwso25aue.bundle.scp.css';
@import '_content/Core/Core.afkwe6pyti.bundle.scp.css';

/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* AuthLayout is styled via global auth classes in app.css */
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ── App Container ── */
.app-container[b-bkw0up2h8y] {
    display: flex;
    min-height: 100vh;
}

/* ── Sidebar ── */
.app-sidebar[b-bkw0up2h8y] {
    width: var(--sidebar-width, 240px);
    background: var(--gray-900, #141414);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    border-top-right-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    overflow: hidden;
    transition: width 0.2s ease;
}

.sidebar-header[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-700, #374151);
}

.brand[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.brand-icon[b-bkw0up2h8y] {
    font-size: 1.5rem;
    color: var(--primary-color, #CC9933);
}

.brand-text[b-bkw0up2h8y] {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.sidebar-content[b-bkw0up2h8y] {
    flex: 1;
    overflow-y: auto;
}

/* ── Sidebar User Card ── */
.sidebar-user-card[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
    padding: 0.75rem;
    background: var(--gray-800, #1f1f1f);
    border-radius: 0.75rem;
    color: white;
    transition: background 0.15s ease;
}

.sidebar-user-card-link[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: white;
    transition: transform 0.15s ease;
}

.sidebar-user-card-link:hover[b-bkw0up2h8y] {
    transform: translateY(-1px);
}

.sidebar-user-actions[b-bkw0up2h8y] {
    flex-shrink: 0;
}

.sidebar-signout-button[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--gray-400, #9ca3af);
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-signout-button:hover[b-bkw0up2h8y] {
    background: var(--gray-700, #374151);
    color: #ef4444;
}

.sidebar-user-avatar[b-bkw0up2h8y] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, #CC9933), var(--primary-hover, #B8862E));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(204, 153, 51, 0.3);
}

.sidebar-user-initials[b-bkw0up2h8y] {
    letter-spacing: 0.02em;
}

.sidebar-user-info[b-bkw0up2h8y] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.sidebar-user-name[b-bkw0up2h8y] {
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-email[b-bkw0up2h8y] {
    font-size: 0.75rem;
    color: var(--gray-400, #9ca3af);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Main Content Area ── */
.app-main[b-bkw0up2h8y] {
    flex: 1;
    margin-left: var(--sidebar-width, 240px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.2s ease;
}

/* ── Header ── */
.app-header[b-bkw0up2h8y] {
    height: var(--header-height, 60px);
    background: white;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    display: grid;
    grid-template-columns: minmax(100px, auto) minmax(200px, 1.2fr) minmax(100px, auto);
    align-items: center;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.header-center[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.hamburger-btn[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 0.5rem;
    color: var(--gray-700, #374151);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.hamburger-btn:hover[b-bkw0up2h8y] {
    background: var(--gray-100, #f3f4f6);
}

/* ── Search ── */
.global-search[b-bkw0up2h8y] {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 200px;
    max-width: 520px;
    width: 100%;
}

.global-search-box[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    background: white;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 0.8rem;
    padding: 0.25rem 0.55rem 0.25rem 0.7rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.global-search-box:focus-within[b-bkw0up2h8y] {
    border-color: var(--primary-color, #CC9933);
    box-shadow: 0 0 0 4px rgba(204, 153, 51, 0.15);
}

.global-search-icon[b-bkw0up2h8y] {
    color: var(--gray-500, #6b7280);
    font-size: 1rem;
}

.global-search-input[b-bkw0up2h8y] {
    border: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
    min-width: 120px;
    font-size: 0.82rem;
    color: var(--gray-800, #1f1f1f);
    padding: 0.35rem 0;
}

.global-search-input[b-bkw0up2h8y]::placeholder {
    color: var(--gray-500, #6b7280);
}

.global-search-input:focus[b-bkw0up2h8y] {
    box-shadow: none;
    outline: none;
}

.global-search-overlay[b-bkw0up2h8y] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 199;
}

.global-search-results[b-bkw0up2h8y] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 200;
    background: white;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    max-height: 400px;
    overflow-y: auto;
    padding: 6px 0;
    animation: searchDropdownFadeIn-b-bkw0up2h8y 0.12s ease-out;
}

@keyframes searchDropdownFadeIn-b-bkw0up2h8y {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.global-search-result-item[b-bkw0up2h8y] {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.1s ease;
}

.global-search-result-item:hover[b-bkw0up2h8y] {
    background: #f7fafc;
}

.global-search-result-icon[b-bkw0up2h8y] {
    color: var(--primary-color, #CC9933);
    font-size: 1rem;
    flex-shrink: 0;
}

.global-search-result-text[b-bkw0up2h8y] {
    min-width: 0;
    flex: 1;
}

.global-search-result-name[b-bkw0up2h8y] {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.global-search-result-date[b-bkw0up2h8y] {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 1px;
}

/* ── Header Icon Buttons ── */
.header-icon-button[b-bkw0up2h8y] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--gray-100, #f3f4f6);
    color: var(--gray-700, #374151);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.15s ease;
}

.header-icon-button:hover[b-bkw0up2h8y] {
    background: var(--gray-200, #e5e7eb);
}

/* ── Content ── */
.app-content[b-bkw0up2h8y] {
    flex: 1;
    padding: 1.5rem;
    background: var(--gray-50, #f9fafb);
}

/* ── Footer ── */
.app-footer[b-bkw0up2h8y] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200, #e5e7eb);
    color: var(--gray-600, #4b5563);
    font-size: 0.8125rem;
    background: white;
    text-align: center;
}

/* ── Mobile overlay ── */
.menu-overlay[b-bkw0up2h8y] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 99;
    animation: fadeIn-b-bkw0up2h8y 0.2s ease-in-out;
    display: none;
}

@keyframes fadeIn-b-bkw0up2h8y {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ── Desktop layout ── */
@media (min-width: 641px) {
    .app-sidebar[b-bkw0up2h8y] {
        left: 0;
    }

    .hamburger-btn[b-bkw0up2h8y] {
        display: none;
    }

    .menu-overlay[b-bkw0up2h8y] {
        display: none !important;
    }
}

/* ── Mobile layout ── */
@media (max-width: 640.98px) {
    .app-sidebar[b-bkw0up2h8y] {
        position: fixed;
        left: -260px;
        transition: left 0.3s ease-in-out;
        z-index: 200;
    }

    .app-sidebar.open[b-bkw0up2h8y] {
        left: 0;
    }

    .app-main[b-bkw0up2h8y] {
        margin-left: 0;
    }

    .menu-overlay[b-bkw0up2h8y] {
        display: block;
    }

    .app-content[b-bkw0up2h8y] {
        padding: 1rem;
    }

    .app-header[b-bkw0up2h8y] {
        padding: 0 1rem;
        grid-template-columns: auto 1fr auto;
    }
}

/* ── Impersonation Banner ── */
.impersonation-banner[b-bkw0up2h8y] {
    background: linear-gradient(135deg, #e65100, #f57c00);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ── Error UI ── */
#blazor-error-ui[b-bkw0up2h8y] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-bkw0up2h8y] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-nav[b-veowerfaym] {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0.5rem;
    flex: 1;
}

.nav-section[b-veowerfaym] {
    display: grid;
    gap: 0.35rem;
}

.nav-section-title[b-veowerfaym] {
    padding: 0 0.75rem 0.25rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500, #6b7280);
    font-weight: 600;
}

.nav-divider[b-veowerfaym] {
    height: 1px;
    background: var(--gray-700, #374151);
    margin: 0.75rem 0;
}

.nav-item[b-veowerfaym] {
    font-size: 0.9375rem;
}

.nav-item[b-veowerfaym]  .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--gray-300, #d1d5db);
    text-decoration: none;
    border-radius: 0.5rem;
    margin-bottom: 0.25rem;
    transition: all 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    gap: 0.75rem;
}

.nav-item[b-veowerfaym]  .nav-link:hover {
    background: var(--gray-800, #1f1f1f);
    color: white;
}

.nav-item[b-veowerfaym]  a.active {
    background: var(--primary-color, #CC9933);
    color: white;
}

.nav-icon[b-veowerfaym] {
    font-size: 1.125rem;
    min-width: 1.25rem;
}

.nav-text[b-veowerfaym] {
    display: inline-block;
}
/* /Components/Pages/Platform/PipelineTestCases.razor.rz.scp.css */
/* PipelineTestCases - minimal custom CSS */
/* /Components/Pages/Platform/PipelineTestResults.razor.rz.scp.css */
/* PipelineTestResults - minimal custom CSS */
