/* /Components/Layout/Header.razor.rz.scp.css */
/* Header Component Styles - Minimal external styles */
/* Most styles are in the component's <style> section for better scoping */

/* Logo hover effect */
.navbar-brand img[b-52x5ppi9vc] {
    transition: transform 0.2s;
}

    .navbar-brand img:hover[b-52x5ppi9vc] {
        transform: scale(1.05);
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-tkv6gbqybc] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-tkv6gbqybc] {
    flex: 1;
}

.top-row[b-tkv6gbqybc] {
    background-color: var(--gym-bg-surface);
    border-bottom: 1px solid var(--gym-border);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-tkv6gbqybc]  a, .top-row[b-tkv6gbqybc]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-tkv6gbqybc]  a:hover, .top-row[b-tkv6gbqybc]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-tkv6gbqybc]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-tkv6gbqybc] {
        justify-content: space-between;
    }

    .top-row[b-tkv6gbqybc]  a, .top-row[b-tkv6gbqybc]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-tkv6gbqybc] {
        flex-direction: row;
    }

    .sidebar[b-tkv6gbqybc] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-tkv6gbqybc] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-tkv6gbqybc]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-tkv6gbqybc], article[b-tkv6gbqybc] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-tkv6gbqybc] {
    background: var(--gym-warning, #fef3c7);
    color: var(--gym-text-primary, #92400e);
    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-tkv6gbqybc] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Features/GymTeam/Admin/Data/InterestedInTrialTrainingDashboard.razor.rz.scp.css */
/* ================================================================
   INTERESTED TRIAL TRAINING DASHBOARD
   ================================================================ */

.itt-page[b-08njszfvd2] {
    min-height: 100vh;
    background: var(--mud-palette-background);
    padding: 2rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--mud-palette-text-primary);
}

/* ── Header ─────────────────────────────────────────────────── */
.itt-header[b-08njszfvd2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.itt-header__eyebrow[b-08njszfvd2] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0086BE;
    margin-bottom: 0.3rem;
}

.itt-header__title[b-08njszfvd2] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mud-palette-text-primary);
    margin: 0;
    line-height: 1;
}

.itt-add-toggle[b-08njszfvd2] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.375rem;
    border-radius: 8px;
    background: rgba(0,134,190,0.12);
    border: 1px solid rgba(0,134,190,0.35);
    color: #00B8E6;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    outline: none;
}

.itt-add-toggle:hover[b-08njszfvd2] {
    background: rgba(0,134,190,0.22);
    border-color: rgba(0,184,230,0.6);
    box-shadow: 0 0 18px rgba(0,134,190,0.25);
}

.itt-add-toggle.open[b-08njszfvd2] {
    background: rgba(220,38,38,0.12);
    border-color: rgba(220,38,38,0.35);
    color: #f87171;
}

.toggle-icon[b-08njszfvd2] {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

/* ── Stats Row ──────────────────────────────────────────────── */
.stats-row[b-08njszfvd2] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-08njszfvd2] {
    background: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 1.125rem 1.375rem;
    border-left: 3px solid var(--c);
    position: relative;
    overflow: hidden;
    animation: fadeUp-b-08njszfvd2 0.5s ease both;
    animation-delay: var(--d, 0ms);
}

.stat-card[b-08njszfvd2]::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -20px;
    width: 90px;
    height: 90px;
    background: var(--c);
    filter: blur(38px);
    opacity: 0.07;
    pointer-events: none;
}

.stat-num[b-08njszfvd2] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--mud-palette-text-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-lbl[b-08njszfvd2] {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Collapsible Add Panel ──────────────────────────────────── */
.collapse-wrap[b-08njszfvd2] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
}

.collapse-wrap.open[b-08njszfvd2] {
    max-height: 900px;
    margin-bottom: 1.5rem;
}

.form-panel[b-08njszfvd2] {
    background: var(--mud-palette-surface);
    border: 1px solid rgba(0,134,190,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 4px;
}

.form-panel__title[b-08njszfvd2] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-panel__title[b-08njszfvd2]::before {
    content: '';
    width: 3px;
    height: 1.1em;
    background: #0086BE;
    border-radius: 2px;
    flex-shrink: 0;
}

.panel-footer[b-08njszfvd2] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.125rem;
    border-top: 1px solid var(--mud-palette-divider);
}

/* ── Edit Panel ─────────────────────────────────────────────── */
.edit-panel[b-08njszfvd2] {
    background: var(--mud-palette-surface);
    border: 1px solid rgba(217,119,6,0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 6px 0;
    animation: fadeUp-b-08njszfvd2 0.28s ease;
}

.edit-panel__head[b-08njszfvd2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.edit-panel__title[b-08njszfvd2] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-panel__title[b-08njszfvd2]::before {
    content: '';
    width: 3px;
    height: 1.1em;
    background: #d97706;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Filter Bar ─────────────────────────────────────────────── */
.filter-bar[b-08njszfvd2] {
    background: var(--mud-palette-surface);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-item[b-08njszfvd2] {
    flex: 1;
    min-width: 150px;
}

.filter-item--wide[b-08njszfvd2] {
    flex: 2;
    min-width: 200px;
}

/* ── People List ────────────────────────────────────────────── */
.people-list[b-08njszfvd2] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p-row[b-08njszfvd2] {
    background: var(--mud-palette-surface);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
    animation: fadeUp-b-08njszfvd2 0.3s ease both;
}

.p-row:hover[b-08njszfvd2] {
    background: var(--mud-palette-background-grey);
    border-left-color: #0086BE;
    transform: translateX(3px);
}

.p-row--scheduled[b-08njszfvd2] {
    border-left-color: rgba(16,185,129,0.3);
}

.p-avatar[b-08njszfvd2] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00649a, #00B8E6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.p-info[b-08njszfvd2] {
    flex: 2;
    min-width: 0;
}

.p-name[b-08njszfvd2] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--mud-palette-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-contact[b-08njszfvd2] {
    font-size: 0.78rem;
    color: var(--mud-palette-text-secondary);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-meta[b-08njszfvd2] {
    flex: 1.5;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.p-date[b-08njszfvd2] {
    font-size: 0.8rem;
    color: var(--mud-palette-text-secondary);
    font-weight: 500;
}

.training-chip[b-08njszfvd2] {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0,134,190,0.12);
    border: 1px solid rgba(0,134,190,0.25);
    border-radius: 100px;
    font-size: 0.68rem;
    color: #00B8E6;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.p-status[b-08njszfvd2] {
    flex-shrink: 0;
    min-width: 92px;
}

.sbadge[b-08njszfvd2] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.sbadge[b-08njszfvd2]::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.sbadge--green[b-08njszfvd2] {
    background: rgba(16,185,129,0.13);
    color: #34d399;
    border: 1px solid rgba(52,211,153,0.25);
}

.sbadge--amber[b-08njszfvd2] {
    background: rgba(245,158,11,0.13);
    color: #fbbf24;
    border: 1px solid rgba(251,191,36,0.25);
    animation: pulse-dot-b-08njszfvd2 2.5s ease infinite;
}

.p-actions[b-08njszfvd2] {
    flex-shrink: 0;
    display: flex;
    gap: 2px;
}

/* ── Empty State ────────────────────────────────────────────── */
.empty-state[b-08njszfvd2] {
    text-align: center;
    padding: 3.5rem 1rem;
    color: var(--mud-palette-text-disabled);
}

.empty-icon[b-08njszfvd2] {
    font-size: 2.75rem;
    opacity: 0.35;
    margin-bottom: 0.75rem;
}

.empty-text[b-08njszfvd2] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .stats-row[b-08njszfvd2] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .itt-page[b-08njszfvd2] { padding: 1rem; }
    .itt-header[b-08njszfvd2] { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .stats-row[b-08njszfvd2] { grid-template-columns: repeat(2, 1fr); }
    .p-meta[b-08njszfvd2], .p-status[b-08njszfvd2] { display: none; }
    .filter-bar[b-08njszfvd2] { flex-direction: column; }
    .filter-item[b-08njszfvd2], .filter-item--wide[b-08njszfvd2] { min-width: unset; width: 100%; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp-b-08njszfvd2 {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot-b-08njszfvd2 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}
/* /Components/Pages/Features/GymTeam/Admin/Data/TrialTrainingComparisonDashboard.razor.rz.scp.css */
/* ================================================================
   TRIAL TRAINING COMPARISON DASHBOARD — Dark Funnel + Kanban
   ================================================================ */

.comp-page[b-r44c8ufyyo] {
    min-height: 100vh;
    background: #0d1117;
    padding: 2rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    color: #e2e8f0;
}

/* ── Header ─────────────────────────────────────────────────── */
.comp-header[b-r44c8ufyyo] {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.comp-header__eyebrow[b-r44c8ufyyo] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0086BE;
    margin-bottom: 0.3rem;
}

.comp-header__title[b-r44c8ufyyo] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f0f6fc;
    margin: 0;
    line-height: 1;
}

.comp-header__sub[b-r44c8ufyyo] {
    font-size: 0.875rem;
    color: #4a5568;
    margin-top: 0.375rem;
}

/* ── Funnel Stats ────────────────────────────────────────────── */
.funnel[b-r44c8ufyyo] {
    display: flex;
    align-items: stretch;
    margin-bottom: 1.5rem;
    background: #161d2b;
    border-radius: 14px;
    overflow: hidden;
}

.funnel-step[b-r44c8ufyyo] {
    flex: 1;
    padding: 1.375rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.05);
    animation: fadeUp-b-r44c8ufyyo 0.5s ease both;
    animation-delay: var(--fd, 0ms);
    position: relative;
    overflow: hidden;
}

.funnel-step:last-child[b-r44c8ufyyo] {
    border-right: none;
}

.funnel-step[b-r44c8ufyyo]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fc);
    opacity: 0.4;
}

.funnel-step__lbl[b-r44c8ufyyo] {
    font-size: 0.67rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.375rem;
}

.funnel-step__num[b-r44c8ufyyo] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #f0f6fc;
    margin-bottom: 0.375rem;
}

.funnel-step--rate .funnel-step__num[b-r44c8ufyyo] {
    color: #34d399;
}

.rate-bar[b-r44c8ufyyo] {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.rate-bar__fill[b-r44c8ufyyo] {
    height: 100%;
    background: linear-gradient(90deg, #059669, #34d399);
    border-radius: 2px;
    transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.funnel-arrow[b-r44c8ufyyo] {
    display: flex;
    align-items: center;
    padding: 0 0.25rem;
    color: rgba(255,255,255,0.1);
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    pointer-events: none;
}

/* ── Filter Panel ────────────────────────────────────────────── */
.filter-panel[b-r44c8ufyyo] {
    background: #161d2b;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.fp-item[b-r44c8ufyyo] {
    flex: 1;
    min-width: 155px;
}

/* ── Kanban Grid ─────────────────────────────────────────────── */
.kanban[b-r44c8ufyyo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
}

.kb-col[b-r44c8ufyyo] {
    background: #161d2b;
    border-radius: 14px;
    overflow: hidden;
    border-top: 3px solid var(--cc);
    animation: fadeUp-b-r44c8ufyyo 0.5s ease both;
    animation-delay: var(--cd, 0ms);
}

.kb-head[b-r44c8ufyyo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.kb-head__title[b-r44c8ufyyo] {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--cc);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.kb-badge[b-r44c8ufyyo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 100px;
    background: var(--cc);
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    opacity: 0.9;
}

.kb-cards[b-r44c8ufyyo] {
    padding: 0.625rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 60px;
    max-height: 560px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}

/* ── Kanban Card ─────────────────────────────────────────────── */
.kb-card[b-r44c8ufyyo] {
    background: #1a2234;
    border-radius: 8px;
    padding: 0.7rem 0.875rem;
    border-left: 2px solid var(--cc);
    animation: fadeUp-b-r44c8ufyyo 0.3s ease both;
    animation-delay: var(--crd, 0ms);
    transition: background 0.15s;
}

.kb-card:hover[b-r44c8ufyyo] {
    background: #1f2a3e;
}

.kb-card__name[b-r44c8ufyyo] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.kb-card__email[b-r44c8ufyyo] {
    font-size: 0.73rem;
    color: #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
}

.kb-card__dates[b-r44c8ufyyo] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.kb-date[b-r44c8ufyyo] {
    font-size: 0.71rem;
    color: #566577;
}

.kb-date-label[b-r44c8ufyyo] {
    color: #3d4d5e;
    font-weight: 500;
}

.kb-card__foot[b-r44c8ufyyo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.kb-chip[b-r44c8ufyyo] {
    display: inline-block;
    padding: 2px 7px;
    background: rgba(0,134,190,0.1);
    border: 1px solid rgba(0,134,190,0.2);
    border-radius: 100px;
    font-size: 0.65rem;
    color: #00B8E6;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
}

.kb-empty[b-r44c8ufyyo] {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #2d3748;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Dark MudBlazor overrides via ::deep ────────────────────── */
.filter-panel[b-r44c8ufyyo]  .mud-input-root {
    background-color: #1e2a3b !important;
    color: #cbd5e1 !important;
}

.filter-panel[b-r44c8ufyyo]  .mud-input-label {
    color: #64748b !important;
}

.filter-panel[b-r44c8ufyyo]  fieldset {
    border-color: rgba(255,255,255,0.1) !important;
}

.filter-panel[b-r44c8ufyyo]  .mud-input-adornment {
    color: #4a5568 !important;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
    .kanban[b-r44c8ufyyo] { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .funnel[b-r44c8ufyyo] { flex-direction: column; }
    .funnel-step[b-r44c8ufyyo] { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .funnel-arrow[b-r44c8ufyyo] { display: none; }
}

@media (max-width: 600px) {
    .comp-page[b-r44c8ufyyo] { padding: 1rem; }
    .filter-panel[b-r44c8ufyyo] { flex-direction: column; }
    .fp-item[b-r44c8ufyyo] { min-width: unset; width: 100%; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp-b-r44c8ufyyo {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* /Components/Pages/Features/GymTeam/Admin/EventLog/EventLog.razor.rz.scp.css */
[b-dl8g0880m6] .checkin-row td {
    background-color: rgba(76, 175, 80, 0.06);
}

[b-dl8g0880m6] .checkout-row td {
    background-color: rgba(255, 152, 0, 0.06);
}

[b-dl8g0880m6] .group-boundary td {
    border-top: 2px solid rgba(0, 0, 0, 0.15);
}

/* /Components/Pages/Features/GymTeam/Admin/Organisation/GantnerBandManagement.razor.rz.scp.css */
.gantner-page[b-q455h2o2pg] {
    --gt-accent: #5b7cfa;
    --gt-cyan: #13b8c5;
}

.gantner-hero[b-q455h2o2pg] {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2.25rem;
    color: white;
    border-radius: 22px;
    background: linear-gradient(120deg, #172554 0%, #3349a5 52%, #087f8c 100%);
    box-shadow: 0 18px 50px rgba(30, 58, 138, .24);
}

.gantner-hero[b-q455h2o2pg]::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -110px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}

.gantner-hero-icon[b-q455h2o2pg] {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

.gantner-title[b-q455h2o2pg] { color: white; font-weight: 800; letter-spacing: -.035em; }
.gantner-subtitle[b-q455h2o2pg] { color: rgba(255,255,255,.78); max-width: 700px; }

.gantner-live-pill[b-q455h2o2pg] {
    margin-left: auto;
    white-space: nowrap;
    padding: .6rem .9rem;
    border-radius: 999px;
    background: rgba(0,0,0,.17);
    font-size: .85rem;
    font-weight: 700;
    z-index: 1;
}

.live-dot[b-q455h2o2pg] { display: inline-block; width: 9px; height: 9px; margin-right: .45rem; border-radius: 50%; }
.live-dot.online[b-q455h2o2pg] { background: #5df2a7; box-shadow: 0 0 0 5px rgba(93,242,167,.14); }
.live-dot.offline[b-q455h2o2pg] { background: #ff9a9a; }

.enrollment-card[b-q455h2o2pg], .status-card[b-q455h2o2pg], .data-card[b-q455h2o2pg] {
    height: 100%;
    border: 1px solid var(--gym-border, rgba(120,120,120,.18));
    border-radius: 18px;
    background: var(--gym-bg-surface, #fff);
    box-shadow: 0 10px 28px rgba(30, 41, 59, .07);
}

.enrollment-card[b-q455h2o2pg] { border-top: 4px solid var(--gt-accent); }
.status-card[b-q455h2o2pg] { border-top: 4px solid var(--gt-cyan); }
.section-kicker[b-q455h2o2pg] { color: var(--gt-accent); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; }

.workflow-steps[b-q455h2o2pg] { display: flex; align-items: flex-start; max-width: 470px; }
.workflow-step[b-q455h2o2pg] { display: grid; justify-items: center; gap: .35rem; color: var(--gym-text-secondary, #7a8497); }
.workflow-step span[b-q455h2o2pg] { display: grid; place-items: center; width: 34px; height: 34px; border: 2px solid currentColor; border-radius: 50%; font-weight: 800; }
.workflow-step.active[b-q455h2o2pg] { color: var(--gt-accent); }
.workflow-step small[b-q455h2o2pg] { font-weight: 700; }
.workflow-line[b-q455h2o2pg] { height: 2px; flex: 1; margin: 16px .55rem 0; background: linear-gradient(90deg, var(--gt-accent), rgba(91,124,250,.2)); }

.enrollment-button[b-q455h2o2pg] { min-height: 52px; border-radius: 12px; font-weight: 800; letter-spacing: .01em; }
.empty-state[b-q455h2o2pg] { min-height: 235px; display: grid; place-content: center; justify-items: center; text-align: center; gap: .55rem; color: var(--gym-text-secondary, #7a8497); }

.pending-band[b-q455h2o2pg] { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 14px; background: linear-gradient(135deg, rgba(19,184,197,.11), rgba(91,124,250,.08)); border: 1px solid rgba(19,184,197,.2); }
.pending-band + .pending-band[b-q455h2o2pg] { margin-top: .8rem; }
.pending-pulse[b-q455h2o2pg] { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; color: white; background: var(--gt-cyan); animation: gt-pulse-b-q455h2o2pg 1.8s infinite; }
.pending-content[b-q455h2o2pg] { flex: 1; min-width: 0; }

.credential-search[b-q455h2o2pg] { max-width: 220px; }
.activity-list[b-q455h2o2pg] { display: grid; gap: .15rem; }
.activity-item[b-q455h2o2pg] { display: flex; align-items: center; gap: .85rem; padding: .75rem .25rem; border-bottom: 1px solid var(--gym-border, rgba(120,120,120,.15)); }
.activity-item:last-child[b-q455h2o2pg] { border-bottom: 0; }
.activity-icon[b-q455h2o2pg] { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 36px; border-radius: 10px; }
.activity-icon.success[b-q455h2o2pg] { color: #087f5b; background: rgba(16,185,129,.13); }
.activity-icon.error[b-q455h2o2pg] { color: #c33; background: rgba(239,68,68,.12); }
.activity-icon.neutral[b-q455h2o2pg] { color: #667085; background: rgba(102,112,133,.12); }
.setup-copy-row[b-q455h2o2pg] { flex-wrap: wrap; }

code[b-q455h2o2pg] { padding: .25rem .5rem; border-radius: 7px; color: var(--gym-text-primary, #1f2937); background: var(--gym-bg-elevated, #f1f5f9); }

@keyframes gt-pulse-b-q455h2o2pg {
    0%, 100% { box-shadow: 0 0 0 0 rgba(19,184,197,.25); }
    50% { box-shadow: 0 0 0 10px rgba(19,184,197,0); }
}

@media (max-width: 760px) {
    .gantner-hero[b-q455h2o2pg] { align-items: flex-start; padding: 1.5rem; }
    .gantner-hero-icon[b-q455h2o2pg] { width: 52px; height: 52px; flex-basis: 52px; }
    .gantner-live-pill[b-q455h2o2pg] { position: absolute; right: 1rem; top: 1rem; font-size: .72rem; }
    .gantner-title[b-q455h2o2pg] { font-size: 2rem !important; }
    .gantner-subtitle[b-q455h2o2pg] { padding-right: 0; }
    .credential-search[b-q455h2o2pg] { max-width: 150px; }
}
/* /Components/Pages/Features/GymTeam/Trainer/Infrastructure/TrainerTabBar.razor.rz.scp.css */
.trainer-tabbar[b-9dozjfduaz] {
    position: sticky;
    top: 72px;
    z-index: 15;
    background: var(--gym-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    margin: -1.1rem -1.5rem 24px;
}

.trainer-tabbar-inner[b-9dozjfduaz] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trainer-tabbar-inner[b-9dozjfduaz]::-webkit-scrollbar {
    display: none;
}

.trainer-tab[b-9dozjfduaz] {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 7px 10px;
    cursor: pointer;
    white-space: nowrap;
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    flex-shrink: 0;
    text-decoration: none !important;
    transition: background .15s ease;
}

.trainer-tab:hover[b-9dozjfduaz] {
    background: rgba(255, 255, 255, .16);
}

.trainer-tab-active[b-9dozjfduaz] {
    background: rgba(255, 255, 255, .22);
}

.trainer-tab-badge[b-9dozjfduaz] {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .trainer-tab-label[b-9dozjfduaz] {
        display: none;
    }
}
/* /Components/Pages/Features/GymTeam/Trainer/TrialTrainingPlanning/TrialTrainingPlanning.razor.rz.scp.css */
.ttp-page[b-q29wnqsnra] {
    width: min(1540px, calc(100% - 2rem));
    margin: 2rem auto 5rem;
    color: var(--mud-palette-text-primary);
}

.ttp-header[b-q29wnqsnra],
.ttp-toolbar[b-q29wnqsnra],
.ttp-week-nav[b-q29wnqsnra],
.ttp-course-top[b-q29wnqsnra],
.ttp-detail-head[b-q29wnqsnra],
.ttp-panel-title[b-q29wnqsnra],
.ttp-person[b-q29wnqsnra],
.ttp-list-link[b-q29wnqsnra] {
    display: flex;
    align-items: center;
}

.ttp-header[b-q29wnqsnra] {
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.ttp-header h1[b-q29wnqsnra] {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: .95;
}

.ttp-header p[b-q29wnqsnra],
.ttp-detail-head p[b-q29wnqsnra] {
    margin: .45rem 0 0;
    color: var(--mud-palette-text-secondary);
}

.ttp-eyebrow[b-q29wnqsnra] {
    color: var(--mud-palette-primary);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.ttp-list-link[b-q29wnqsnra],
.ttp-today[b-q29wnqsnra] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 9px;
    background: var(--mud-palette-surface);
    color: var(--mud-palette-text-primary);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.ttp-list-link[b-q29wnqsnra] {
    gap: .55rem;
    padding: .7rem 1rem;
}

.ttp-today[b-q29wnqsnra] {
    padding: .5rem .8rem;
}

.ttp-toolbar[b-q29wnqsnra] {
    position: relative;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 12px;
    background: var(--mud-palette-surface);
}

.ttp-week-nav[b-q29wnqsnra] {
    gap: .25rem;
}

.ttp-week-title[b-q29wnqsnra] {
    position: absolute;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
}

.ttp-week-title span[b-q29wnqsnra] {
    color: var(--mud-palette-text-secondary);
    font-size: .78rem;
}

.ttp-location[b-q29wnqsnra] {
    width: 230px;
}

.ttp-loading[b-q29wnqsnra] {
    display: grid;
    place-items: center;
    min-height: 360px;
}

.ttp-legend[b-q29wnqsnra] {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
    margin: .75rem .15rem;
    color: var(--mud-palette-text-secondary);
    font-size: .78rem;
}

.ttp-legend span[b-q29wnqsnra] {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.ttp-legend i[b-q29wnqsnra] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.ttp-legend .available[b-q29wnqsnra] { background: #10b981; }
.ttp-legend .full[b-q29wnqsnra] { background: #f59e0b; }
.ttp-legend .overbooked[b-q29wnqsnra] { background: #ef4444; }

.ttp-week-grid[b-q29wnqsnra] {
    display: grid;
    grid-template-columns: repeat(7, minmax(150px, 1fr));
    gap: .55rem;
    overflow-x: auto;
    padding-bottom: .5rem;
}

.ttp-day[b-q29wnqsnra] {
    min-width: 150px;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 12px;
    background: var(--mud-palette-surface);
}

.ttp-day.is-today[b-q29wnqsnra] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--mud-palette-primary) 35%, transparent);
}

.ttp-day-head[b-q29wnqsnra] {
    display: flex;
    justify-content: space-between;
    padding: .75rem .85rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-background-grey);
    font-size: .78rem;
    text-transform: uppercase;
}

.ttp-day-body[b-q29wnqsnra] {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: .65rem;
}

.ttp-no-course[b-q29wnqsnra],
.ttp-empty[b-q29wnqsnra] {
    padding: 1.25rem .5rem;
    color: var(--mud-palette-text-secondary);
    font-size: .82rem;
    text-align: center;
}

.ttp-course[b-q29wnqsnra] {
    width: 100%;
    padding: .7rem;
    border: 1px solid var(--mud-palette-lines-default);
    border-left: 4px solid #10b981;
    border-radius: 9px;
    background: var(--mud-palette-background);
    color: var(--mud-palette-text-primary);
    text-align: left;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.ttp-course:hover[b-q29wnqsnra],
.ttp-course.is-selected[b-q29wnqsnra] {
    transform: translateY(-2px);
    box-shadow: var(--mud-elevation-4);
}

.ttp-course.is-selected[b-q29wnqsnra] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: 1px;
}

.ttp-course.full[b-q29wnqsnra] { border-left-color: #f59e0b; }
.ttp-course.overbooked[b-q29wnqsnra] { border-left-color: #ef4444; }

.ttp-course-top[b-q29wnqsnra] {
    justify-content: space-between;
    margin-bottom: .35rem;
}

.ttp-time[b-q29wnqsnra] {
    color: var(--mud-palette-primary);
    font-size: .75rem;
    font-weight: 800;
}

.ttp-count[b-q29wnqsnra] {
    padding: .1rem .35rem;
    border-radius: 999px;
    background: var(--mud-palette-action-default-hover);
    font-size: .7rem;
    font-weight: 800;
}

.ttp-course strong[b-q29wnqsnra],
.ttp-course small[b-q29wnqsnra] {
    display: block;
}

.ttp-course strong[b-q29wnqsnra] {
    font-size: .86rem;
    line-height: 1.2;
}

.ttp-course small[b-q29wnqsnra] {
    margin-top: .25rem;
    color: var(--mud-palette-text-secondary);
    font-size: .68rem;
}

.ttp-avatars[b-q29wnqsnra] {
    display: flex;
    margin-top: .6rem;
}

.ttp-avatars span[b-q29wnqsnra],
.ttp-person-avatar[b-q29wnqsnra] {
    display: grid;
    place-items: center;
    border: 2px solid var(--mud-palette-surface);
    border-radius: 50%;
    background: linear-gradient(135deg, #00649a, #00b8e6);
    color: white;
    font-size: .62rem;
    font-weight: 800;
}

.ttp-avatars span[b-q29wnqsnra] {
    width: 24px;
    height: 24px;
    margin-left: -5px;
}

.ttp-avatars span:first-child[b-q29wnqsnra] {
    margin-left: 0;
}

.ttp-detail[b-q29wnqsnra] {
    margin-top: 1.25rem;
    padding: 1.4rem;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 14px;
    background: var(--mud-palette-surface);
    box-shadow: var(--mud-elevation-2);
}

.ttp-unassigned[b-q29wnqsnra] {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, #f59e0b 45%, transparent);
    border-radius: 12px;
    background: var(--mud-palette-surface);
}

.ttp-unassigned .ttp-person:last-child[b-q29wnqsnra] {
    border-bottom: 0;
}

.ttp-detail-head[b-q29wnqsnra] {
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.ttp-detail-head h2[b-q29wnqsnra] {
    margin: .2rem 0 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
}

.ttp-detail-grid[b-q29wnqsnra] {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(290px, .8fr);
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.ttp-actions-panel[b-q29wnqsnra] {
    padding-left: 1.5rem;
    border-left: 1px solid var(--mud-palette-lines-default);
}

.ttp-panel-title[b-q29wnqsnra] {
    justify-content: space-between;
    margin-bottom: .9rem;
    font-weight: 800;
}

.ttp-capacity-pill[b-q29wnqsnra] {
    padding: .25rem .55rem;
    border-radius: 999px;
    background: color-mix(in srgb, #10b981 15%, transparent);
    color: #10b981;
    font-size: .75rem;
}

.ttp-capacity-pill.full[b-q29wnqsnra] {
    background: color-mix(in srgb, #f59e0b 15%, transparent);
    color: #d97706;
}

.ttp-capacity-pill.overbooked[b-q29wnqsnra] {
    background: color-mix(in srgb, #ef4444 15%, transparent);
    color: #ef4444;
}

.ttp-person[b-q29wnqsnra] {
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.ttp-person-avatar[b-q29wnqsnra] {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    font-size: .82rem;
}

.ttp-person > div[b-q29wnqsnra] {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.ttp-person small[b-q29wnqsnra] {
    overflow: hidden;
    color: var(--mud-palette-text-secondary);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ttp-person .ttp-notes[b-q29wnqsnra] {
    margin-top: .2rem;
    white-space: normal;
}

.ttp-capacity-editor[b-q29wnqsnra] {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--mud-palette-lines-default);
}

@media (max-width: 900px) {
    .ttp-page[b-q29wnqsnra] {
        width: min(100% - 1rem, 1540px);
        margin-top: 1rem;
    }

    .ttp-header[b-q29wnqsnra] {
        align-items: flex-start;
        flex-direction: column;
    }

    .ttp-toolbar[b-q29wnqsnra] {
        align-items: stretch;
        flex-direction: column;
    }

    .ttp-week-title[b-q29wnqsnra] {
        position: static;
        order: -1;
        transform: none;
    }

    .ttp-week-nav[b-q29wnqsnra] {
        justify-content: center;
    }

    .ttp-location[b-q29wnqsnra] {
        width: 100%;
    }

    .ttp-detail-grid[b-q29wnqsnra] {
        grid-template-columns: 1fr;
    }

    .ttp-actions-panel[b-q29wnqsnra] {
        padding-top: 1.25rem;
        padding-left: 0;
        border-top: 1px solid var(--mud-palette-lines-default);
        border-left: 0;
    }
}
/* /Components/Pages/Features/Member/PersonalTraining/MyPlans.razor.rz.scp.css */
/* Styles moved to wwwroot/css/my-plans.css and loaded via <HeadContent> */
