@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';

/* /Components/Layout/LoginDisplay.razor.rz.scp.css */
.login-display[b-ywgvhc7oxe] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Authorized User Profile */
.user-profile[b-ywgvhc7oxe] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    margin-top: 0.3rem;
    padding: 0.2rem 0.2rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .user-profile:hover[b-ywgvhc7oxe] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-1px);
    }

.user-avatar[b-ywgvhc7oxe] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.user-info[b-ywgvhc7oxe] {
    display: flex;
    flex-direction: column;
}

.user-name-span[b-ywgvhc7oxe] {
    font-weight: 600;
    color: #212529;
    font-size: 0.9rem;
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-logout[b-ywgvhc7oxe] {
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

    .btn-logout:hover[b-ywgvhc7oxe] {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
        transform: scale(1.1);
    }

/* Not Authorized Login Button */
.btn-login[b-ywgvhc7oxe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-login:hover[b-ywgvhc7oxe] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

    .btn-login:active[b-ywgvhc7oxe] {
        transform: translateY(0);
    }

/* Bootstrap Icons */
.bi[b-ywgvhc7oxe] {
    display: inline-block;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 640px) {
    .user-profile[b-ywgvhc7oxe] {        
        margin-top: 0.3rem;
        padding: 0.2rem 0.2rem;
        gap: 0.5rem;
    }

    .user-avatar[b-ywgvhc7oxe] {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .user-info[b-ywgvhc7oxe] {
        display: none; /*Hide username on very small screens*/
    }

    .btn-logout[b-ywgvhc7oxe] {
        width: 28px;
        height: 28px;
        padding: 0.25rem;
    }

    .login-text[b-ywgvhc7oxe] {
        display: none; /* Hide "Log in" text on small screens */
    }

    .btn-login[b-ywgvhc7oxe] {
        padding: 0.75rem;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .user-name-span[b-ywgvhc7oxe] {
        max-width: 100px;
    }
}

/* Ensure visibility on all screen sizes */
@media (max-width: 640px) {
    .login-display[b-ywgvhc7oxe] {
        margin-left: auto;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-z5yt3avkh3] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

main[b-z5yt3avkh3] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-row[b-z5yt3avkh3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navigation Brand */
.top-row .navbar-brand[b-z5yt3avkh3] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #667eea;
    font-weight: 600;
    font-size: 1.25rem;
    margin-right: 2rem;
    transition: color 0.2s ease;
}

.top-row .navbar-brand:hover[b-z5yt3avkh3] {
    color: #764ba2;
}

.top-row .brand-icon[b-z5yt3avkh3] {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

/* Main Navigation */
.top-row .main-nav[b-z5yt3avkh3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.top-row .main-nav .nav-link[b-z5yt3avkh3] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.top-row .main-nav .nav-link:hover[b-z5yt3avkh3] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.top-row .main-nav .nav-link.active[b-z5yt3avkh3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.top-row .main-nav .nav-icon[b-z5yt3avkh3] {
    margin-right: 0.2rem;
    font-size: 1.1rem;
}

/* Login Wrapper */
.top-row .login-wrapper[b-z5yt3avkh3] {
    margin-left: auto;
}

/* Content Area - Add padding for fixed navbar */
.content[b-z5yt3avkh3] {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    margin-top: 3.5rem;
}

@media (max-width: 768px) {
    .top-row[b-z5yt3avkh3] {
        padding: 0 1rem;
    }

    .top-row .navbar-brand[b-z5yt3avkh3] {
        font-size: 1rem;
        margin-right: 1rem;
    }

    .top-row .brand-icon[b-z5yt3avkh3] {
        font-size: 1.25rem;
        margin-right: 0.25rem;
    }

    .top-row .main-nav[b-z5yt3avkh3] {
        gap: 0.25rem;
    }

    .top-row .main-nav .nav-link[b-z5yt3avkh3] {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .top-row .main-nav .nav-text[b-z5yt3avkh3] {
        display: none;
    }

    .top-row .main-nav .nav-icon[b-z5yt3avkh3] {        
        font-size: 1.25rem;
    }
}

/* Error UI */
#blazor-error-ui[b-z5yt3avkh3] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    left: 0;
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
    border-top: 3px solid #ffc107;
    animation: slideUp-b-z5yt3avkh3 0.3s ease;
}

@keyframes slideUp-b-z5yt3avkh3 {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

#blazor-error-ui .dismiss[b-z5yt3avkh3] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #856404;
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

#blazor-error-ui .dismiss:hover[b-z5yt3avkh3] {
    background: rgba(0, 0, 0, 0.1);
    color: #533f03;
}

/* Smooth scroll behavior */
html[b-z5yt3avkh3] {
    scroll-behavior: smooth;
}

/* Global animations */
@keyframes fadeIn-b-z5yt3avkh3 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

article[b-z5yt3avkh3] {
    animation: fadeIn-b-z5yt3avkh3 0.4s ease;
}
/* /Components/Pages/Pipelines.razor.rz.scp.css */
/* Pipelines Dashboard Styles */

.pipelines-dashboard[b-d8a7e5lsga] {
    animation: fadeIn-b-d8a7e5lsga 0.3s ease-in;
    font-size: 0.875rem;
}

@keyframes fadeIn-b-d8a7e5lsga {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Header - Matching FolderFilter style */
.dashboard-header[b-d8a7e5lsga] {
    margin-bottom: 1.5rem;
}

.page-title[b-d8a7e5lsga] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-title .bi[b-d8a7e5lsga] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle[b-d8a7e5lsga] {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.utility-pipelines-header[b-d8a7e5lsga] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.utility-pipelines-header .bi[b-d8a7e5lsga] {
    color: #6c757d;
}

.spin[b-d8a7e5lsga] {
    animation: spin-b-d8a7e5lsga 1s linear infinite;
}

@keyframes spin-b-d8a7e5lsga {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Controls Section */
.controls-section[b-d8a7e5lsga] {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-group[b-d8a7e5lsga] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label[b-d8a7e5lsga] {
    font-weight: 600;
    color: #495057;
    margin: 0;
    white-space: nowrap;
    font-size: 0.95rem;
}

.stage-filter-select[b-d8a7e5lsga] {
    min-width: 220px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 8px 12px;
    transition: all 0.2s ease;
}

.stage-filter-select:focus[b-d8a7e5lsga] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.btn-primary[b-d8a7e5lsga] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover:not(:disabled)[b-d8a7e5lsga] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled[b-d8a7e5lsga] {
    opacity: 0.6;
}

/* Table Styles */
.pipelines-table[b-d8a7e5lsga] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.pipelines-table thead th[b-d8a7e5lsga] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.pipelines-table tbody td[b-d8a7e5lsga] {
    padding: 8px 12px;
    vertical-align: middle;
    border-color: #e9ecef;
}

.pipeline-row[b-d8a7e5lsga] {
    transition: all 0.2s ease;
}

.pipeline-row:hover[b-d8a7e5lsga] {
    background-color: #f8f9fa;
    transform: scale(1.005);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pipeline-row.status-success[b-d8a7e5lsga] {
    border-left: 3px solid #28a745;
}

.pipeline-row.status-failed[b-d8a7e5lsga] {
    border-left: 3px solid #dc3545;
}

.pipeline-row.status-partial[b-d8a7e5lsga] {
    border-left: 3px solid #ffc107;
}

.microservice-name-cell[b-d8a7e5lsga] {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.pipeline-name-cell[b-d8a7e5lsga] {
    font-weight: 600;
    font-size: 0.85rem;
    color: #212529;
    line-height: 1.3;
}

.pipeline-folder-cell[b-d8a7e5lsga] {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 2px;
}

.badge-type[b-d8a7e5lsga] {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.badge-frontend[b-d8a7e5lsga] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-backend[b-d8a7e5lsga] {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.badge-type .bi[b-d8a7e5lsga] {
    font-size: 0.65rem;
}

/* Stage Badges Inline */
.stage-badges-inline[b-d8a7e5lsga] {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.badge-stage[b-d8a7e5lsga] {
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

.badge-stage-success[b-d8a7e5lsga] {
    background-color: #28a745;
    color: white;
}

.badge-stage-secondary[b-d8a7e5lsga] {
    background-color: #6c757d;
    color: white;
    opacity: 0.5;
}

.badge-stage .bi[b-d8a7e5lsga] {
    font-size: 0.6rem;
}

/* Status Badges */
.badge[b-d8a7e5lsga] {
    font-size: 0.7rem;
    padding: 4px 8px;
    font-weight: 600;
}

.bg-success[b-d8a7e5lsga] { background-color: #28a745 !important; }
.bg-danger[b-d8a7e5lsga] { background-color: #dc3545 !important; }
.bg-warning[b-d8a7e5lsga] { background-color: #ffc107 !important; color: #212529 !important; }
.bg-secondary[b-d8a7e5lsga] { background-color: #6c757d !important; }

.pipeline-card[b-d8a7e5lsga] {
    transition: transform 0.2s, box-shadow 0.2s;
}

.pipeline-card:hover[b-d8a7e5lsga] {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.border-success[b-d8a7e5lsga] {
    border-left: 4px solid #28a745 !important;
}

.border-danger[b-d8a7e5lsga] {
    border-left: 4px solid #dc3545 !important;
}

.border-warning[b-d8a7e5lsga] {
    border-left: 4px solid #ffc107 !important;
}

.border-secondary[b-d8a7e5lsga] {
    border-left: 4px solid #6c757d !important;
}

.status-indicator[b-d8a7e5lsga] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-succeeded[b-d8a7e5lsga] {
    background-color: #28a745;
}

.status-failed[b-d8a7e5lsga] {
    background-color: #dc3545;
}

.status-partiallysucceeded[b-d8a7e5lsga] {
    background-color: #ffc107;
}

.status-canceled[b-d8a7e5lsga] {
    background-color: #6c757d;
}

.pipeline-stats[b-d8a7e5lsga] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item[b-d8a7e5lsga] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    flex: 1;
}

.stat-label[b-d8a7e5lsga] {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
}

.stat-value[b-d8a7e5lsga] {
    font-size: 1.25rem;
    font-weight: bold;
    color: #212529;
}

@media (max-width: 768px) {
    .page-title[b-d8a7e5lsga] {
        font-size: 1.75rem;
    }

    .pipelines-table[b-d8a7e5lsga] {
        font-size: 0.75rem;
    }

    .controls-section[b-d8a7e5lsga] {
        padding: 1rem;
    }

    .filter-group[b-d8a7e5lsga] {
        flex-direction: column;
        align-items: stretch;
    }

    .stage-filter-select[b-d8a7e5lsga] {
        min-width: 100%;
    }
}
