/* ==========================================
   Therapist Dashboard — Teal-Sage Accent
   ========================================== */
.therapist-theme {
    --therapist-primary: #6ea8a0;
    --therapist-primary-hover: #5d9790;
    --therapist-bg-accent: rgba(110, 168, 160, 0.10);
    --therapist-border-accent: rgba(110, 168, 160, 0.35);
}
.theme-light .therapist-theme {
    --therapist-primary: #4d8a7a;
    --therapist-primary-hover: #3d7a6a;
    --therapist-bg-accent: rgba(77, 138, 122, 0.08);
    --therapist-border-accent: rgba(77, 138, 122, 0.25);
}

/* ==========================================
   Top Bar
   ========================================== */
.t-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}
.t-topbar-title {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--therapist-primary);
    margin: 0;
}
.t-topbar-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 8px;
}
.t-topbar-right { position: relative; }

/* Gear menu */
.t-gear-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.15s, border-color 0.15s;
    display: flex;
    align-items: center;
}
.t-gear-btn:hover { color: var(--therapist-primary); border-color: var(--therapist-primary); }

.t-gear-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
}
.t-gear-email { font-size: 13px; color: var(--text-muted); padding: 4px 0 8px; word-break: break-all; }
.t-gear-separator { height: 1px; background: var(--border-color); margin: 8px 0; }
.t-gear-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.t-gear-item label { font-size: 14px; color: var(--text-main); }
.t-gear-item select {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
}
.t-gear-logout {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--color-danger);
    border-radius: var(--radius-sm);
    background: none;
    color: var(--color-danger);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.15s;
}
.t-gear-logout:hover { background-color: var(--color-danger-bg); }

/* ==========================================
   Main Content Area
   ========================================== */
.t-main { max-width: 1400px; margin: 0 auto; padding: 24px; }
#t-patient-detail-view.t-main { max-width: none; padding-top: 8px; }

/* ==========================================
   List Toolbar (Search + Filters + Add)
   ========================================== */
.t-list-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.t-search-wrap { flex: 1; min-width: 200px; }
.t-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.15s;
}
.t-search-input:focus { outline: none; border-color: var(--therapist-primary); }
.t-search-input::placeholder { color: var(--text-muted); }

/* Filter chips */
.t-filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.t-chip {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.t-chip:hover { border-color: var(--therapist-primary); color: var(--therapist-primary); }
.t-chip.active {
    background-color: var(--therapist-primary);
    border-color: var(--therapist-primary);
    color: #fff;
}

/* Primary button (therapist) */
.t-btn-primary {
    padding: 10px 20px;
    background-color: var(--therapist-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s, transform 0.1s;
    white-space: nowrap;
}
.t-btn-primary:hover { background-color: var(--therapist-primary-hover); }
.t-btn-primary:active { transform: scale(0.98); }

/* ==========================================
   Patient Cards Grid
   ========================================== */
.t-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.t-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.t-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(110, 168, 160, 0.12);
}
.t-card--ok:hover { border-color: var(--color-success); }
.t-card--warning { border-left: 4px solid var(--color-warning); }
.t-card--danger { border-left: 4px solid var(--color-danger); }
.t-card--loading { opacity: 0.6; animation: skeleton-pulse 1.5s ease-in-out infinite; }

/* Card internals */
.t-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.t-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.t-card-avatar--ok { background-color: var(--color-success); }
.t-card-avatar--warning { background-color: var(--color-warning); }
.t-card-avatar--danger { background-color: var(--color-danger); }
.t-card-avatar--loading { background-color: var(--text-muted); }
.t-card-avatar--unknown { background-color: var(--text-muted); }

.t-card-id { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.t-card-name { font-size: 16px; font-weight: 600; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.t-card-name--empty { color: var(--text-muted); font-style: italic; font-weight: 500; }
.t-card-username { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.t-card-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.t-card-status--ok { background-color: var(--color-success); }
.t-card-status--warning { background-color: var(--color-warning); }
.t-card-status--danger { background-color: var(--color-danger); }
.t-card-status--loading { background-color: var(--text-muted); }
.t-card-status--unknown { background-color: var(--text-muted); }

.t-card-metrics { display: flex; gap: 16px; align-items: baseline; margin-bottom: 10px; }
.t-card-se { font-size: 26px; font-weight: 700; font-family: var(--font-mono); }
.t-card-tst { font-size: 15px; color: var(--text-muted); font-family: var(--font-mono); }
.t-card-entries { font-size: 14px; color: var(--text-muted); }

.t-card-trend { display: flex; gap: 3px; align-items: flex-end; height: 20px; margin-bottom: 10px; }
.t-card-trend-dot {
    width: 6px;
    border-radius: 2px;
    min-height: 3px;
    transition: height 0.2s;
}

.t-card-footer { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.t-card-rx { color: var(--therapist-primary); font-weight: 500; }
.t-card-fetched-at { font-size: 11px; color: var(--text-muted); opacity: 0.7; float: right; }

/* Urgency badge */
.t-urgency-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.t-urgency--medium {
    background: var(--color-warning-bg);
    color: var(--color-warning);
}
.t-urgency--high {
    background: var(--color-danger-bg);
    color: var(--color-danger);
}

/* Note preview on card */
.t-card-note-preview {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==========================================
   Patient Detail View
   ========================================== */
.t-detail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.t-detail-back {
    background: none;
    border: none;
    color: var(--therapist-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background-color 0.15s;
}
.t-detail-back:hover { background-color: var(--therapist-bg-accent); }

.t-detail-id { display: flex; flex-direction: column; min-width: 0; }
.t-detail-name {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--text-heading);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background-color 0.15s;
}
.t-detail-name:hover { background-color: var(--therapist-bg-accent); }
.t-detail-name--empty { color: var(--text-muted); font-style: italic; }
.t-detail-username {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    padding: 0 6px;
}
.t-detail-label-input {
    font-size: 20px;
    font-family: var(--font-display);
    color: var(--text-heading);
    background: var(--bg-surface);
    border: 1px solid var(--therapist-primary);
    border-radius: 4px;
    padding: 2px 6px;
    outline: none;
    min-width: 200px;
}
.t-detail-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.t-detail-metrics {
    display: flex;
    gap: 12px;
    margin-left: auto;
    align-items: center;
}
.t-detail-metric {
    text-align: center;
}
.t-detail-metric-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.t-detail-metric-value { font-size: 15px; font-weight: 700; font-family: var(--font-mono); }

.t-detail-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    transition: color 0.15s;
}
.t-detail-remove:hover { color: var(--color-danger); }

.t-detail-refresh {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    padding: 4px 6px;
    margin-left: 4px;
    border-radius: 4px;
    transition: color 0.15s;
}
.t-detail-refresh:hover { color: var(--therapist-primary); }
.t-detail-refresh:disabled { opacity: 0.4; cursor: not-allowed; }

/* Secondary / Danger buttons */
.t-btn-secondary {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}
.t-btn-secondary:hover { border-color: var(--therapist-primary); color: var(--therapist-primary); }
.t-btn-danger {
    padding: 8px 16px;
    border: 1px solid var(--color-danger);
    border-radius: var(--radius-md);
    background: none;
    color: var(--color-danger);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.15s;
}
.t-btn-danger:hover { background-color: var(--color-danger-bg); }

/* ==========================================
   Sub-Tabs
   ========================================== */
.t-subtabs {
    display: flex;
    gap: 2px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.t-subtab {
    padding: 7px 14px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.t-subtab:hover { color: var(--text-main); }
.t-subtab.active { color: var(--therapist-primary); border-bottom-color: var(--therapist-primary); }

.t-tab-content { display: none; }
.t-tab-content.active { display: block; animation: fadeIn 0.2s ease-in-out; }

/* ==========================================
   Stats Cards
   ========================================== */
.t-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.t-stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
}
.t-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.t-stat-value { font-size: 22px; font-weight: 700; font-family: var(--font-mono); }

/* ==========================================
   Charts
   ========================================== */
.t-chart-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.t-chart-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}
.t-chart-card h4 { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }

/* Date range picker */
.t-range-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.t-range-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}
.t-range-btn:hover { border-color: var(--therapist-primary); color: var(--therapist-primary); }
.t-range-btn.active { background: var(--therapist-primary); color: #fff; border-color: var(--therapist-primary); }

/* Navigator controls (replaces old .t-range-bar) */
.t-stats-controls { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.t-stats-controls-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.t-stats-nav-widget {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 2px;
    background: var(--bg-surface);
}
.t-stats-nav-widget.nav-active { border-color: var(--therapist-primary); }
.t-stats-nav-widget.nav-active .t-stats-nav-label { color: var(--therapist-primary); font-weight: 600; }

.t-stats-nav-btn {
    padding: 4px 10px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    line-height: 1;
    transition: background 0.15s;
}
.t-stats-nav-btn:hover:not(:disabled) { background: var(--bg-hover, rgba(0,0,0,0.06)); color: var(--therapist-primary); }
.t-stats-nav-btn:disabled { opacity: 0.3; cursor: default; }

.t-stats-nav-label {
    font-size: 13px;
    color: var(--text-muted);
    min-width: 130px;
    text-align: center;
    white-space: nowrap;
}

.t-stats-custom-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2px;
}
.t-stats-custom-label { font-size: 13px; color: var(--text-muted); }
.t-stats-date-input {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 5px 8px;
    font-size: 13px;
    font-family: var(--font-body);
    background: var(--bg-surface);
    color: var(--text-primary);
}
.t-stats-date-input:focus { outline: none; border-color: var(--therapist-primary); }

/* ==========================================
   Notes
   ========================================== */
.t-note-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 10px;
    position: relative;
}
.t-note-date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.t-note-text { font-size: 14px; line-height: 1.6; }
.t-note-actions { position: absolute; top: 12px; right: 12px; display: flex; gap: 6px; }
.t-note-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.15s, background-color 0.15s;
}
.t-note-btn:hover { color: var(--text-main); background: var(--bg-surface-hover); }
.t-note-btn--delete:hover { color: var(--color-danger); }

.t-note-add {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.t-note-textarea {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    resize: vertical;
    min-height: 60px;
}
.t-note-textarea:focus { outline: none; border-color: var(--therapist-primary); }

/* ==========================================
   Prescriptions
   ========================================== */
.t-rx-card {
    background: var(--therapist-bg-accent);
    border: 1px solid var(--therapist-border-accent);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 10px;
}
.t-rx-active { border-left: 4px solid var(--therapist-primary); }
.t-rx-title { font-size: 14px; font-weight: 600; color: var(--therapist-primary); margin-bottom: 4px; }
.t-rx-value { font-size: 18px; font-weight: 600; font-family: var(--font-mono); margin-bottom: 4px; }
.t-rx-meta { font-size: 13px; color: var(--text-muted); }
.t-rx-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--therapist-border-accent);
}
.t-rx-compare-block { text-align: center; }
.t-rx-compare-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.t-rx-compare-value { font-size: 16px; font-weight: 600; font-family: var(--font-mono); }

/* ==========================================
   Tools (SRT / DSPS)
   ========================================== */
.t-tool-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}
.t-tool-title { font-size: 16px; font-weight: 400; font-family: var(--font-display); color: var(--therapist-primary); margin-bottom: 16px; }
.t-tool-form { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 16px; }
.t-tool-field label { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 4px; }
.t-tool-field input, .t-tool-field select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
}
.t-tool-result {
    background: var(--therapist-bg-accent);
    border: 1px solid var(--therapist-border-accent);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 16px;
}
.t-tool-result h4 { font-size: 14px; color: var(--therapist-primary); margin-bottom: 10px; }

/* DSPS schedule table */
.t-schedule-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.t-schedule-table th { text-align: left; padding: 8px; border-bottom: 2px solid var(--border-color); color: var(--text-muted); font-size: 12px; text-transform: uppercase; }
.t-schedule-table td { padding: 8px; border-bottom: 1px solid var(--border-color); }
.t-schedule-phase { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.t-schedule-phase--shifting { background: var(--primary-muted); color: var(--primary); }
.t-schedule-phase--stabilization { background: var(--color-warning-bg); color: var(--color-warning); }
.t-schedule-phase--consolidation { background: var(--color-success-bg); color: var(--color-success); }

/* Copy/CSV button */
.t-copy-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}
.t-copy-btn:hover { border-color: var(--therapist-primary); color: var(--therapist-primary); }

/* Table SE highlighting */
.t-table-row--good { background-color: var(--color-success-bg); }
.t-table-row--warn { background-color: var(--color-warning-bg); }
.t-table-row--bad { background-color: var(--color-danger-bg); }

/* Add patient modal */
.therapist-modal .modal-content { max-width: 440px; }
.therapist-modal .modal-title { color: var(--therapist-primary); margin-bottom: 16px; font-family: var(--font-display); }
.therapist-modal-actions {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 12px;
    margin-top: 4px;
}
.therapist-modal-actions button { width: auto; }
.therapist-modal-actions .t-btn-primary { justify-self: stretch; }
.therapist-modal-actions .t-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Confirmation dialog */
.t-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.t-confirm-box {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}
.t-confirm-box p { margin-bottom: 16px; font-size: 15px; }
.t-confirm-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ==========================================
   Therapist Responsive
   ========================================== */
@media (max-width: 768px) {
    .t-main { padding: 16px; }
    .t-list-toolbar { flex-direction: column; align-items: stretch; }
    .t-filter-chips { overflow-x: auto; }
    .t-cards-grid { grid-template-columns: 1fr; }
    .t-detail-header { flex-direction: column; align-items: flex-start; }
    .t-detail-metrics { margin-left: 0; width: 100%; }
    .t-chart-row { grid-template-columns: 1fr; }
    .t-subtabs { gap: 0; }
    .t-subtab { padding: 10px 12px; font-size: 13px; }
}

/* ==========================================
   Refresh banner
   ========================================== */
@keyframes t-spin {
    to { transform: rotate(360deg); }
}

.t-refresh-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--therapist-bg-accent);
    border-bottom: 1px solid var(--therapist-border-accent);
}

.t-refresh-banner.hidden {
    display: none;
}

.t-refresh-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--therapist-border-accent);
    border-top-color: var(--therapist-primary);
    border-radius: 50%;
    animation: t-spin 0.8s linear infinite;
    flex-shrink: 0;
}
