/* ============================================================================
   clinician-portal.css — shared design-system styles for the clinician portal.

   WHY THIS FILE EXISTS
   The clinician pages (Dashboard, Earnings, Requests, Schedule, Availability,
   Payouts, Ratings, Profile, Preferences, …) were authored using a shared set
   of layout classes (promo-page, page-header, overview-card, card-*, form-*,
   toggle-*, modal-*, settings-section, status-badge, …). Those classes only
   ever existed inside *scoped* (.razor.css) files belonging to OTHER components
   (Admin, Profile, ClinicianSession, NotificationSettings, …). Blazor CSS
   isolation locks scoped rules to their own component, so the clinician pages —
   which have no scoped CSS of their own — rendered as unstyled plain text.

   This file promotes that shared vocabulary to global scope, in the clinician
   dark-glass design language (the --tg-* tokens defined in theragen-shared.css).

   SAFETY / NO REGRESSIONS
   Rules here use single-class selectors (specificity 0,1,0). Any other page that
   reuses one of these class names already has a *scoped* rule for it
   (specificity ≥ 0,2,0 thanks to the [b-xxxxx] isolation attribute), which always
   wins — so this sheet only ever paints elements that currently have nothing.
   Descendant selectors are used only inside containers that are exclusive to the
   clinician pages (.session-card, .upgrade-card, .modal-card, .toggle-row, …).
   ========================================================================== */

@keyframes tg-spin { to { transform: rotate(360deg); } }
@keyframes tg-card-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Fade only — no transform. A retained transform (animation-fill-mode: both)
   on .promo-page/.clinician-container would make them a containing block for
   position:fixed descendants, trapping modals/pickers inside the page box
   instead of the viewport. */
@keyframes tg-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- Page shell ---------------------------------------------------------- */
.promo-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
    animation: tg-fade-in .45s var(--tg-ease-soft, ease-out) both;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.page-header > div { min-width: 0; }

.subtitle {
    font-size: .9rem;
    color: var(--tg-muted);
    margin: .35rem 0 0;
    line-height: 1.5;
}

.section-desc {
    font-size: .85rem;
    color: var(--tg-muted);
    line-height: 1.5;
    margin: .25rem 0 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    min-width: 0;
}

/* ---- Section cards ------------------------------------------------------- */
.settings-section {
    background: var(--tg-card);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius, 20px);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.settings-section > h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tg-ink);
    margin: 0 0 1rem;
}

/* ---- Overview / stat cards ---------------------------------------------- */
.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.overview-card {
    background: var(--tg-card);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius, 18px);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.overview-card.warning { border-color: rgba(245, 158, 11, .5); background: rgba(245, 158, 11, .06); }
.overview-card.active  { border-color: var(--tg-primary); background: rgba(76, 224, 198, .06); }
.card-value { font-size: 1.7rem; font-weight: 700; color: var(--tg-ink); line-height: 1.1; }
.card-label { font-size: .82rem; color: var(--tg-muted); }
.card-sub   { font-size: .75rem; color: var(--tg-muted); opacity: .8; }

/* ---- Loading / empty / error states ------------------------------------ */
.loading, .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 3rem 1rem;
    color: var(--tg-muted);
    text-align: center;
}
.spinner, .loader {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(76, 224, 198, .15);
    border-top-color: var(--tg-primary);
    border-radius: 50%;
    animation: tg-spin .8s linear infinite;
}

.empty-state, .info-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--tg-muted);
    background: var(--tg-card);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius, 18px);
}
.empty-state p, .info-state p { margin: .25rem 0; }

.error-state {
    text-align: center;
    padding: 3rem 1rem;
}
.error-state h2 { color: var(--tg-ink); margin: 0 0 .5rem; font-size: 1.2rem; }
.error-state p  { color: var(--tg-muted); margin: 0 0 1.25rem; }

.error-banner {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2);
    color: #fca5a5;
    font-size: .85rem;
    padding: .7rem 1rem;
    border-radius: var(--tg-radius-sm, 12px);
    margin-bottom: 1rem;
}

/* ---- Buttons ------------------------------------------------------------- */
.btn-refresh {
    background: var(--tg-card-bright, rgba(255, 255, 255, .04));
    border: 1px solid var(--tg-line);
    border-radius: 10px;
    padding: .5rem 1rem;
    color: var(--tg-ink);
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    transition: background .18s var(--tg-ease, ease), border-color .18s var(--tg-ease, ease);
}
.btn-refresh:hover { border-color: var(--tg-primary); background: rgba(76, 224, 198, .08); }
.btn-refresh:disabled { opacity: .5; cursor: not-allowed; }

/* btn-primary shape: app.css only gives `.btn-primary` a colour (it expects
   Bootstrap's `.btn` for shape, or a scoped per-page rule). The clinician pages
   use `class="btn-primary"` with neither, so without this they render as bare
   square teal fills. Anchored under .promo-page so it only paints the clinician
   portal — every other page's btn-primary is untouched. Colour is left to
   app.css; we only add the missing geometry. */
.promo-page .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .7rem 1.4rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: filter .18s var(--tg-ease, ease);
}
.promo-page .btn-primary:hover { filter: brightness(1.08); }
.promo-page .btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .6rem 1.25rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--tg-line);
    background: transparent;
    color: var(--tg-ink);
    text-decoration: none;
    transition: border-color .18s var(--tg-ease, ease), background .18s var(--tg-ease, ease);
}
.btn-secondary:hover { border-color: var(--tg-primary); background: rgba(76, 224, 198, .06); }

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 600;
    border: 1px solid var(--tg-primary);
    background: transparent;
    color: var(--tg-primary);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background .18s var(--tg-ease, ease);
}
.btn-outline-sm:hover { background: rgba(76, 224, 198, .1); }

.btn-cancel {
    background: none;
    border: none;
    color: var(--tg-muted);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    padding: .35rem 0;
    transition: color .15s var(--tg-ease, ease);
}
.btn-cancel:hover { color: var(--tg-ink); }

.btn-deactivate {
    background: rgba(239, 68, 68, .12);
    border: 1px solid rgba(239, 68, 68, .3);
    color: #fca5a5;
    border-radius: 10px;
    padding: .5rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s var(--tg-ease, ease);
}
.btn-deactivate:hover { background: rgba(239, 68, 68, .2); }

.btn-request { width: 100%; }
.btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(2, 17, 27, .3);
    border-top-color: var(--tg-bg-deep, #02111b);
    border-radius: 50%;
    animation: tg-spin .7s linear infinite;
}

/* ---- Status badges (pills) ---------------------------------------------- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .65rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    border: 1px solid var(--tg-line);
    background: var(--tg-card-bright, rgba(255, 255, 255, .04));
    color: var(--tg-muted);
    cursor: default;
}
.status-badge.active   { background: rgba(76, 224, 198, .12); border-color: var(--tg-primary); color: var(--tg-primary); }
.status-badge.warning  { background: rgba(245, 158, 11, .12); border-color: rgba(245, 158, 11, .5); color: #fbbf24; }
.status-badge.inactive { background: var(--tg-card-bright, rgba(255, 255, 255, .04)); color: var(--tg-muted); }

/* ---- Tabs --------------------------------------------------------------- */
.admin-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--tg-line);
    margin-bottom: 1.25rem;
    overflow-x: auto;
}
.tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: .7rem 1.1rem;
    color: var(--tg-muted);
    cursor: pointer;
    font-size: .88rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: color .15s var(--tg-ease, ease);
}
.tab:hover { color: var(--tg-ink); }
.tab.active { color: var(--tg-primary); border-bottom-color: var(--tg-primary); font-weight: 600; }
.tab-badge {
    background: #ef4444;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: .05rem .4rem;
    border-radius: 999px;
}

/* ---- Tables ------------------------------------------------------------- */
.table-container { overflow-x: auto; border-radius: var(--tg-radius-sm, 12px); }
.promo-table, .settings-section table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}
.promo-table th, .settings-section table th {
    text-align: left;
    padding: .6rem .75rem;
    color: var(--tg-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--tg-line);
    white-space: nowrap;
}
.promo-table td, .settings-section table td {
    padding: .6rem .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    color: var(--tg-ink);
}

/* ---- Forms -------------------------------------------------------------- */
.form-group { margin-bottom: 1rem; }
.form-group > label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--tg-ink);
    margin-bottom: .4rem;
}
.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: .65rem .85rem;
    border-radius: var(--tg-radius-sm, 12px);
    border: 1px solid var(--tg-line);
    background: rgba(5, 18, 26, .6);
    color: var(--tg-ink);
    font-size: .85rem;
    font-family: inherit;
    outline: none;
    transition: border-color .18s var(--tg-ease, ease);
}
.form-textarea { resize: vertical; line-height: 1.5; min-height: 90px; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--tg-primary);
    box-shadow: var(--tg-focus, 0 0 0 3px rgba(76, 224, 198, .2));
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(107, 143, 150, .6); }
.char-count { display: block; text-align: right; font-size: .7rem; color: var(--tg-muted); margin-top: .3rem; }

/* ---- Toggles ------------------------------------------------------------ */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .65rem 0;
    cursor: pointer;
}
.toggle-label { font-size: .88rem; color: var(--tg-ink); }
.toggle-input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-switch {
    position: relative;
    flex-shrink: 0;
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: var(--tg-card-bright, rgba(255, 255, 255, .08));
    border: 1px solid var(--tg-line);
    transition: background .18s var(--tg-ease, ease);
}
.toggle-switch::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--tg-muted);
    transition: transform .18s var(--tg-ease, ease), background .18s var(--tg-ease, ease);
}
.toggle-input:checked + .toggle-switch { background: rgba(76, 224, 198, .25); border-color: var(--tg-primary); }
.toggle-input:checked + .toggle-switch::after { transform: translateX(18px); background: var(--tg-primary); }

/* ---- Modals ------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
    animation: tg-fade-in .2s ease-out both;
}
.modal-card, .modal-content {
    background: var(--tg-surface, #0a1f2a);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius, 20px);
    padding: 1.5rem;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--tg-shadow, 0 20px 60px rgba(0, 0, 0, .5));
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.modal-header h3 { margin: 0; color: var(--tg-ink); font-size: 1.05rem; }
.modal-body { color: var(--tg-muted); font-size: .88rem; line-height: 1.5; }
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.modal-close {
    background: none;
    border: none;
    color: var(--tg-muted);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
.modal-close:hover { color: var(--tg-ink); }

/* ---- Clinician directory (Clinicians.razor) ----------------------------- */
.clinician-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.clinician-card {
    background: var(--tg-card);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius, 18px);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    transition: border-color .18s var(--tg-ease, ease), transform .18s var(--tg-ease, ease);
}
.clinician-card:hover { border-color: var(--tg-primary); transform: translateY(-2px); }
.clinician-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(76, 224, 198, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-primary);
    font-weight: 700;
}

/* ---- Bookings / requests lists ----------------------------------------- */
.bookings-list { display: flex; flex-direction: column; gap: .85rem; }
.booking-card {
    background: var(--tg-card);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius, 18px);
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

/* ---- Weekly schedule / availability ------------------------------------ */
.weekly-grid, .schedule-week-grid { display: flex; flex-direction: column; gap: .6rem; }
.day-group {
    background: var(--tg-card);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius-sm, 14px);
    padding: 1rem 1.25rem;
}
.day-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
    padding: .4rem 0;
}

.message-thread {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    background: rgba(5, 18, 26, .4);
    border-radius: var(--tg-radius-sm, 14px);
    padding: 1rem;
}
.user-id { font-family: monospace; font-size: .8rem; color: var(--tg-muted); }
.notes-label { font-size: .7rem; font-weight: 600; color: var(--tg-muted); text-transform: uppercase; letter-spacing: .03em; }
.notes-preview {
    background: rgba(76, 224, 198, .05);
    border-radius: var(--tg-radius-sm, 12px);
    padding: .75rem 1rem;
}

/* ============================================================================
   Booking / session detail vocabulary — lifted from ClinicianSession.razor.css
   so the same look is available to the other clinician pages that reuse it.
   These containers (session-*, upgrade-*, confirmation-*, tier-*, crisis-banner,
   pro-upsell, emergency-footer, next-steps, info-row, …) are clinician-exclusive,
   so the descendant selectors here cannot bleed onto other parts of the app.
   ========================================================================== */
.clinician-container {
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
    animation: tg-fade-in .5s var(--tg-ease-soft, ease-out) both;
}

.session-card, .confirmation-card, .upgrade-card {
    background: var(--tg-card);
    border: 1px solid var(--tg-line);
    border-radius: var(--tg-radius, 22px);
    padding: 1.5rem;
    margin-bottom: 1rem;
    animation: tg-card-up .45s var(--tg-ease-soft, ease-out) .12s both;
}
.confirmation-card, .upgrade-card { padding: 2rem 1.5rem; text-align: center; }

.session-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.session-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(76, 224, 198, .12); color: var(--tg-primary); border-radius: 16px;
}
.session-card-header h2 { font-size: 1.1rem; font-weight: 600; color: var(--tg-ink); margin: 0; }
.session-duration { font-size: .8rem; color: var(--tg-muted); margin: .15rem 0 0; }

.session-info {
    background: rgba(5, 18, 26, .4);
    border-radius: var(--tg-radius-sm, 14px);
    padding: .25rem 1rem;
    margin-bottom: 1.25rem;
}
.info-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}
.info-row:last-child { border-bottom: none; }
.info-label { font-size: .8rem; color: var(--tg-muted); }
.info-value { font-size: .8rem; font-weight: 600; color: var(--tg-ink); }

.session-notes-input { margin-bottom: 1.25rem; }
.session-notes-input label { display: block; font-size: .82rem; font-weight: 600; color: var(--tg-ink); margin-bottom: .4rem; }
.session-notes-input textarea {
    width: 100%;
    padding: .7rem .9rem;
    border-radius: var(--tg-radius-sm, 14px);
    border: 1px solid var(--tg-line);
    background: rgba(5, 18, 26, .6);
    color: var(--tg-ink);
    font-size: .82rem;
    font-family: inherit;
    resize: vertical;
    outline: none;
    line-height: 1.5;
    transition: border-color .18s var(--tg-ease, ease);
}
.session-notes-input textarea:focus { border-color: var(--tg-primary); box-shadow: var(--tg-focus, 0 0 0 3px rgba(76, 224, 198, .2)); }

.upgrade-icon, .confirmation-icon { color: var(--tg-primary); margin-bottom: 1rem; opacity: .9; }
.upgrade-card h1, .confirmation-card h2 { font-size: 1.4rem; font-weight: 700; color: var(--tg-ink); margin: 0 0 .5rem; }
.upgrade-desc, .confirmation-desc {
    font-size: .9rem; color: var(--tg-muted); line-height: 1.55;
    max-width: 480px; margin: 0 auto 1.5rem;
}
.upgrade-tiers { display: flex; flex-direction: column; gap: .5rem; margin: 0 auto 1.5rem; max-width: 340px; }
.tier-highlight {
    display: flex; align-items: center; justify-content: space-between;
    padding: .6rem 1rem;
    background: rgba(76, 224, 198, .05);
    border: 1px solid rgba(76, 224, 198, .1);
    border-radius: var(--tg-radius-sm, 14px);
    font-size: .82rem;
}
.tier-highlight.featured { background: rgba(76, 224, 198, .12); border-color: var(--tg-primary); }
.tier-name { font-weight: 600; color: var(--tg-ink); }
.tier-detail { color: var(--tg-muted); }

.crisis-banner {
    display: flex; align-items: flex-start; gap: .75rem;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    border-radius: var(--tg-radius-sm, 14px);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.crisis-banner-icon { color: #ef4444; flex-shrink: 0; margin-top: 2px; }
.crisis-banner strong { color: #fca5a5; font-size: .88rem; }
.crisis-banner p { font-size: .8rem; color: rgba(252, 165, 165, .8); margin: .2rem 0 0; line-height: 1.45; }

.next-steps {
    text-align: left;
    background: rgba(5, 18, 26, .4);
    border-radius: var(--tg-radius-sm, 14px);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.next-steps h3 { font-size: .82rem; font-weight: 600; color: var(--tg-ink); margin: 0 0 .6rem; }
.next-steps ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.next-steps li a { font-size: .82rem; color: var(--tg-primary); text-decoration: none; }
.next-steps li a:hover { text-decoration: underline; }
.confirmation-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

.pro-upsell {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: rgba(76, 224, 198, .05);
    border: 1px solid rgba(76, 224, 198, .1);
    border-radius: var(--tg-radius-sm, 14px);
    padding: .85rem 1.25rem;
    margin-bottom: 1rem;
}
.pro-upsell p { font-size: .8rem; color: var(--tg-muted); margin: 0; line-height: 1.45; }
.pro-upsell strong { color: var(--tg-ink); }

.emergency-footer { text-align: center; padding: 1rem; margin-top: .5rem; border-top: 1px solid rgba(255, 255, 255, .04); }
.emergency-footer p { font-size: .78rem; color: var(--tg-muted); margin: 0; }
.emergency-footer strong { color: #fca5a5; }
.emergency-footer a { color: var(--tg-primary); text-decoration: none; }
.emergency-footer a:hover { text-decoration: underline; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 768px) {
    .overview-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .overview-cards { grid-template-columns: 1fr; }
    .session-card-header { flex-direction: column; text-align: center; }
    .confirmation-actions { flex-direction: column; }
    .pro-upsell { flex-direction: column; text-align: center; }
    .tier-highlight { flex-direction: column; gap: .15rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    .promo-page, .clinician-container,
    .session-card, .confirmation-card, .upgrade-card,
    .crisis-banner, .pro-upsell, .modal-overlay { animation: none !important; }
    .spinner, .loader, .btn-loader { animation: none !important; }
}
