/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
.login-shell[b-6th1dvjyfm] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F4FF;
    position: relative;
    overflow: hidden;
}

/* Gradient blob 1 — soft blue top-left */
.login-blob[b-6th1dvjyfm] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
}
.login-blob-1[b-6th1dvjyfm] {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #BDD0FF 0%, #93B3FF 60%, transparent 100%);
    top: -120px; left: -80px;
    animation: blobFloat1-b-6th1dvjyfm 8s ease-in-out infinite;
}
.login-blob-2[b-6th1dvjyfm] {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #C9B8FF 0%, #A98FFF 60%, transparent 100%);
    bottom: -100px; right: -60px;
    animation: blobFloat2-b-6th1dvjyfm 10s ease-in-out infinite;
}
.login-blob-3[b-6th1dvjyfm] {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #BAE6FF 0%, #93C5FD 60%, transparent 100%);
    bottom: 10%; left: 15%;
    animation: blobFloat3-b-6th1dvjyfm 12s ease-in-out infinite;
}
@keyframes blobFloat1-b-6th1dvjyfm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.05); }
}
@keyframes blobFloat2-b-6th1dvjyfm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(1.08); }
}
@keyframes blobFloat3-b-6th1dvjyfm {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.04); }
}

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-ngq1dflh1m] { display: flex; height: 100vh; overflow: hidden; }

/* Expanded sidebar */
.sidebar[b-ngq1dflh1m] {
    width: 215px;
    min-width: 215px;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: width 200ms ease, min-width 200ms ease;
    overflow: hidden;
}

/* Collapsed sidebar */
.app-shell.sidebar-collapsed .sidebar[b-ngq1dflh1m] {
    width: 56px;
    min-width: 56px;
}

.main-area[b-ngq1dflh1m] { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
.page-content[b-ngq1dflh1m] { flex: 1; overflow-y: auto; }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-group[b-309r6wx3rj] { margin-top: 2px; }
.nav-group-header[b-309r6wx3rj] {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 16px 16px 6px;
    background: none; border: none; cursor: pointer;
    font-size: 11px; font-weight: 600; color: var(--color-text-muted);
    letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-group-header:hover[b-309r6wx3rj] { color: var(--color-text-dark); }
.nav-group-header svg[b-309r6wx3rj] { transition: transform 150ms; flex-shrink: 0; }
.nav-group-header.collapsed svg[b-309r6wx3rj] { transform: rotate(-90deg); }
.nav-group-items.collapsed[b-309r6wx3rj] { display: none; }
.nav-home[b-309r6wx3rj] { padding: 8px 8px 2px; }
.nav-item[b-309r6wx3rj] { padding: 2px 8px; }
.nav-item[b-309r6wx3rj]  .nav-link {
    display: flex; align-items: center; gap: 10px; height: 36px;
    padding: 0 10px; border-radius: var(--radius-sm);
    font-size: 14px; color: var(--color-text-muted);
    text-decoration: none; transition: background 120ms, color 120ms; white-space: nowrap;
}
.nav-item[b-309r6wx3rj]  .nav-link:hover { background: #F1F5FF; color: var(--color-text-dark); text-decoration: none; }
.nav-item[b-309r6wx3rj]  .nav-link.active { background: var(--color-primary); color: white; }
.nav-item[b-309r6wx3rj]  .nav-link svg { flex-shrink: 0; opacity: 0.75; }
.nav-item[b-309r6wx3rj]  .nav-link.active svg { opacity: 1; }
.sidebar-bottom[b-309r6wx3rj] { margin-top: auto; border-top: 1px solid var(--color-border); padding: 8px 8px; }
.sidebar-bottom .nav-item[b-309r6wx3rj] { padding: 2px 0; }
.signout-form[b-309r6wx3rj] { margin: 0; }
.signout-btn[b-309r6wx3rj] {
    display: flex; align-items: center; gap: 10px; height: 36px; padding: 0 10px;
    border-radius: var(--radius-sm); font-size: 14px; color: var(--color-text-muted);
    background: none; border: none; cursor: pointer; width: 100%; text-align: left;
    transition: background 120ms, color 120ms;
}
.signout-btn:hover[b-309r6wx3rj] { background: var(--color-danger-bg); color: var(--color-danger); }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-u7x8crr5qf],
.components-reconnect-repeated-attempt-visible[b-u7x8crr5qf],
.components-reconnect-failed-visible[b-u7x8crr5qf],
.components-pause-visible[b-u7x8crr5qf],
.components-resume-failed-visible[b-u7x8crr5qf],
.components-rejoining-animation[b-u7x8crr5qf] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-retrying[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-failed[b-u7x8crr5qf],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-u7x8crr5qf] {
    display: block;
}


#components-reconnect-modal[b-u7x8crr5qf] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-u7x8crr5qf 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-u7x8crr5qf 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-u7x8crr5qf 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-u7x8crr5qf]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-u7x8crr5qf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-u7x8crr5qf {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-u7x8crr5qf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-u7x8crr5qf {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-u7x8crr5qf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-u7x8crr5qf] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-u7x8crr5qf] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-u7x8crr5qf] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-u7x8crr5qf] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-u7x8crr5qf] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-u7x8crr5qf] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-u7x8crr5qf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-u7x8crr5qf] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-u7x8crr5qf {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Dashboard stat cards — role-conditional, 3 or 4 per row */
.dash-stat-row[b-u8zmh60sxq] { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 24px; }
.dash-stat-card[b-u8zmh60sxq] {
  background: white; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}
.dash-stat-label[b-u8zmh60sxq] { font-size: 13px; color: var(--color-text-muted); font-weight: 500; }
.dash-stat-value[b-u8zmh60sxq] { font-size: 32px; font-weight: 700; color: var(--color-text-dark); line-height: 1; font-variant-numeric: tabular-nums; }
.dash-stat-icon[b-u8zmh60sxq] {
  position: absolute; right: 16px; top: 16px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); opacity: 0.85;
}
.dash-stat-icon-pending[b-u8zmh60sxq]  { background: #FFF2DF; color: var(--color-warning); }
.dash-stat-icon-action[b-u8zmh60sxq]   { background: #FFF2DF; color: var(--color-warning); }
.dash-stat-icon-flight[b-u8zmh60sxq]   { background: #E8EFFF; color: var(--color-primary); }
.dash-stat-icon-complete[b-u8zmh60sxq] { background: #E4FFE9; color: var(--color-success); }
.dash-stat-icon-pay[b-u8zmh60sxq]      { background: #E8EFFF; color: var(--color-primary); }
.dash-stat-icon-money[b-u8zmh60sxq]    { background: #E4FFE9; color: var(--color-success); }
.dash-stat-icon-stuck[b-u8zmh60sxq]    { background: #FFE9E9; color: var(--color-danger); }
/* Subtitle under the value — real data (oldest-item age) or a plain description */
.dash-stat-sub[b-u8zmh60sxq] { font-size: 12px; color: var(--color-text-muted); }

/* Tab bar for request list */
.dash-tab-bar[b-u8zmh60sxq] {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--color-border); margin-bottom: 0;
  flex-wrap: wrap;
}
.dash-tab[b-u8zmh60sxq] {
  padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--color-text-muted);
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; margin-bottom: -1px; white-space: nowrap;
  font-family: var(--font-sans); transition: color 120ms;
}
.dash-tab:hover[b-u8zmh60sxq] { color: var(--color-text-dark); }
.dash-tab.active[b-u8zmh60sxq] { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.dash-tab-spacer[b-u8zmh60sxq] { flex: 1; }
.dash-tab-actions[b-u8zmh60sxq] { display: flex; align-items: center; gap: 8px; padding-bottom: 6px; }

/* Dash table */
.dash-table-wrapper[b-u8zmh60sxq] {
  background: white; border: 1px solid var(--color-border);
  border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
}
.dash-table[b-u8zmh60sxq] { width: 100%; border-collapse: collapse; }
.dash-table thead th[b-u8zmh60sxq] {
  font-size: 12px; font-weight: 600; color: var(--color-text-muted);
  background: #FAFBFC; border-bottom: 1px solid var(--color-border);
  padding: 10px 16px; text-align: left; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.dash-table tbody td[b-u8zmh60sxq] {
  font-size: 14px; padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.dash-table tbody tr:last-child td[b-u8zmh60sxq] { border-bottom: none; }
.dash-table tbody tr:hover td[b-u8zmh60sxq] { background: #F6F8FF; cursor: pointer; }
.dash-table .col-no[b-u8zmh60sxq] { width: 48px; color: var(--color-text-muted); font-size: 13px; }
.dash-table .col-overdue[b-u8zmh60sxq] { color: var(--color-danger); font-weight: 500; font-size: 13px; }
.dash-table .col-overdue-warn[b-u8zmh60sxq] { color: var(--color-warning); font-weight: 500; font-size: 13px; }

/* Badge pending/status in table */
.status-badge-pending[b-u8zmh60sxq] { display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:4px; font-size:12px; font-weight:600; background:var(--color-pending-bg); color:var(--color-pending); border:1px solid var(--color-pending); }
.status-badge-approved[b-u8zmh60sxq] { display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:4px; font-size:12px; font-weight:600; background:var(--color-approved-bg); color:var(--color-approved); border:1px solid var(--color-approved); }
.status-badge-paid[b-u8zmh60sxq] { display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:4px; font-size:12px; font-weight:600; background:var(--color-paid-bg); color:var(--color-paid); border:1px solid var(--color-paid); }
.status-badge-rejected[b-u8zmh60sxq] { display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:4px; font-size:12px; font-weight:600; background:var(--color-rejected-bg); color:var(--color-rejected); border:1px solid var(--color-rejected); }
.status-badge-draft[b-u8zmh60sxq] { display:inline-flex; align-items:center; height:24px; padding:0 10px; border-radius:4px; font-size:12px; font-weight:600; background:#F1F3F9; color:var(--color-text-muted); border:1px solid var(--color-border); }

/* Row actions kebab */
.row-kebab[b-u8zmh60sxq] {
  background: none; border: none; cursor: pointer; padding: 4px 6px;
  color: var(--color-text-muted); border-radius: var(--radius-sm);
  display: flex; align-items: center;
}
.row-kebab:hover[b-u8zmh60sxq] { background: var(--color-bg-row-alt); color: var(--color-text-dark); }

/* Pagination */
.dash-pagination[b-u8zmh60sxq] { display: flex; align-items: center; justify-content: flex-end; gap: 4px; padding: 12px 16px; background: white; border: 1px solid var(--color-border); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); }
.dash-page-btn[b-u8zmh60sxq] { width:32px; height:32px; border:1px solid var(--color-border); border-radius:var(--radius-sm); background:white; font-size:13px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--color-text-dark); transition:all 120ms; font-family:var(--font-sans); }
.dash-page-btn:hover[b-u8zmh60sxq] { border-color:var(--color-primary); color:var(--color-primary); }
.dash-page-btn.active[b-u8zmh60sxq] { background:var(--color-primary); color:white; border-color:var(--color-primary); }
.dash-page-btn:disabled[b-u8zmh60sxq] { opacity:.4; cursor:default; pointer-events:none; }
/* /Components/Pages/Login.razor.rz.scp.css */
.login-card[b-zln4kqxlqy] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(44, 113, 246, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    width: 440px;
    padding: 48px;
    position: relative;
    z-index: 1;
}
.login-logo[b-zln4kqxlqy] {
    font-size: 20px;
    color: #1D2433;
    margin-bottom: 32px;
    letter-spacing: -0.2px;
}
.login-heading[b-zln4kqxlqy] {
    font-size: 28px;
    font-weight: 700;
    color: #1D2433;
    margin: 0 0 8px;
    line-height: 1.2;
}
.login-sub[b-zln4kqxlqy] {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0 0 32px;
}
