/* MintPT Clean Styles */

/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Mint brand colors */
.text-mint { color: #8ad341; }
.text-mint-accent { color: #62c1c2; }
.text-mint-blue { color: #243652; }
.text-mint-grey { color: #666666; }

.bg-mint { background-color: #8ad341; }
.bg-mint-accent { background-color: #62c1c2; }
.bg-mint-blue { background-color: #243652; }
.bg-mint-grey { background-color: #666666; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ── Page background ───────────────────────────────────────────────────── */
body {
    background-color: #eef1f7 !important;
}

/* ── Cards ─────────────────────────────────────────────────────────────────
   Bootstrap's card defaults are overridden here with !important so inline
   dark styles in older pages don't need to be present.
   Templates should use .card (white) or .card.card-dark (navy) explicitly.
──────────────────────────────────────────────────────────────────────────── */
.card {
    background-color: #ffffff !important;
    border: 1px solid #e5eaf0 !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 14px rgba(36,54,82,0.09) !important;
    color: #1e293b;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36,54,82,0.13) !important;
}

.card .card-header {
    background-color: transparent !important;
    border-bottom: 1px solid #e5eaf0 !important;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.card .card-footer {
    background-color: #f6f9fc !important;
    border-top: 1px solid #e5eaf0 !important;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #243652;
    margin: 0;
}

/* ── Dark navy panel ────────────────────────────────────────────────────────
   Use class="card card-dark" for intentional dark sections (session lists,
   shift controls, overlay panels). Text stays white on the navy background.
──────────────────────────────────────────────────────────────────────────── */
.card-dark {
    background-color: #1e2d45 !important;
    border-color: #2a3f5a !important;
    box-shadow: 0 2px 14px rgba(0,0,0,0.22) !important;
    color: #e2e8f0 !important;
}

.card-dark .card-header {
    background-color: #162538 !important;
    border-bottom-color: #2a3f5a !important;
}

.card-dark .card-footer {
    background-color: #131f2e !important;
    border-top-color: #2a3f5a !important;
}

/* ── Tinted info strips (circuit / EMOM meta rows) ──────────────────────── */
.strip-circuit {
    background: rgba(245,158,11,0.08) !important;
    border-left: 3px solid #f59e0b !important;
    border-radius: 4px !important;
}

.strip-emom {
    background: rgba(167,139,250,0.08) !important;
    border-left: 3px solid #a78bfa !important;
    border-radius: 4px !important;
}

/* ── Mint alert (feedback notification banner) ──────────────────────────── */
.alert-mint {
    background: rgba(138,211,65,0.08) !important;
    border: 1.5px solid #8ad341 !important;
    color: #243652 !important;
    border-radius: 8px !important;
}

/* ── List-group items on light cards ────────────────────────────────────── */
.list-group-item {
    background-color: #f8fafc !important;
    border-color: #e5eaf0 !important;
    color: #1e293b !important;
}

.list-group-item.ex-done {
    background-color: rgba(138,211,65,0.07) !important;
    border-color: rgba(138,211,65,0.28) !important;
}

/* ── Tables on light card backgrounds ───────────────────────────────────── */
.card:not(.card-dark) .table {
    color: #1e293b;
}

.card:not(.card-dark) .table thead th {
    color: #64748b;
    border-bottom-color: #e5eaf0;
    font-size: .78rem;
    font-weight: 600;
}

.card:not(.card-dark) .table tbody tr {
    border-color: #eef1f7;
}

/* ── Selectable program item rows (programs/edit) ───────────────────────── */
.prog-item {
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 6px;
    cursor: pointer;
}

.prog-item:hover {
    background: #f0f4fa;
    border-color: #c5d0db;
}

/* ── Schedule/radio option rows (programs/assign) ───────────────────────── */
.radio-option {
    background: #f8fafc;
    border: 1px solid #e5eaf0;
    border-radius: 6px;
    cursor: pointer;
}

/* ── Buttons ─────────────────────────────────────────────────────────────
   Base overrides: softer radius, smooth transitions on all .btn elements.
   Bootstrap's !important rules are balanced with specificity where needed.
   Destructive (danger/warning) and ghost (outline-secondary/outline-light)
   classes are left at Bootstrap defaults — they carry intentional meaning.
──────────────────────────────────────────────────────────────────────── */
.btn {
    border-radius: 6px !important;
    font-weight: 500;
    transition: background-color 0.18s ease, transform 0.15s ease,
                border-color 0.18s ease, color 0.18s ease;
}

/* ── Primary: Mint Green filled ────────────────────────────────────────
   btn-primary · btn-mint · btn-success all use the same filled style.   */
.btn-primary,
.btn-mint,
.btn-success {
    background-color: #8ad341 !important;
    border-color: #8ad341 !important;
    color: #243652 !important;
    font-weight: 600 !important;
}

.btn-primary:hover, .btn-primary:focus,
.btn-mint:hover, .btn-mint:focus,
.btn-success:hover, .btn-success:focus {
    background-color: #7bc73a !important;
    border-color: #7bc73a !important;
    color: #243652 !important;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-primary:disabled, .btn-primary[disabled],
.btn-mint:disabled, .btn-mint[disabled],
.btn-success:disabled, .btn-success[disabled] {
    background-color: #3d5a2a !important;
    border-color: #3d5a2a !important;
    color: #6b8a4a !important;
    cursor: not-allowed;
    transform: none;
}

/* ── Secondary: Mint Green outline ─────────────────────────────────────
   btn-secondary · btn-outline · btn-outline-primary · btn-outline-success
   btn-outline-mint — all render as transparent + green border.           */
.btn-secondary,
.btn-outline,
.btn-outline-primary,
.btn-outline-success,
.btn-outline-mint {
    background-color: transparent !important;
    border: 1.5px solid #8ad341 !important;
    color: #8ad341 !important;
    font-weight: 500 !important;
}

.btn-secondary:hover, .btn-secondary:focus,
.btn-outline:hover, .btn-outline:focus,
.btn-outline-primary:hover, .btn-outline-primary:focus,
.btn-outline-success:hover, .btn-outline-success:focus,
.btn-outline-mint:hover, .btn-outline-mint:focus {
    background-color: rgba(138, 211, 65, 0.12) !important;
    border-color: #8ad341 !important;
    color: #8ad341 !important;
    transform: translateY(-1px);
}

/* ── Info: Accent Blue ─────────────────────────────────────────────────
   btn-info — informational / view actions use Mint Accent (#62c1c2).    */
.btn-info {
    background-color: #62c1c2 !important;
    border-color: #62c1c2 !important;
    color: #0d1a26 !important;
    font-weight: 600 !important;
}

.btn-info:hover, .btn-info:focus {
    background-color: #56aeb0 !important;
    border-color: #56aeb0 !important;
    color: #0d1a26 !important;
    transform: translateY(-1px);
}

.btn-outline-info {
    background-color: transparent !important;
    border: 1.5px solid #62c1c2 !important;
    color: #62c1c2 !important;
}

.btn-outline-info:hover, .btn-outline-info:focus {
    background-color: rgba(98, 193, 194, 0.12) !important;
    border-color: #62c1c2 !important;
    color: #62c1c2 !important;
    transform: translateY(-1px);
}

/* ── Ghost (dark-card context) — keep subdued ──────────────────────────
   btn-outline-secondary and btn-outline-light remain unchanged so they
   work correctly as Cancel / Back actions on dark card backgrounds.      */
.btn-outline-secondary {
    color: #94a3b8 !important;
    border-color: #4a5a6a !important;
    background-color: transparent !important;
}

.btn-outline-secondary:hover {
    color: #e2e8f0 !important;
    background-color: #1e2d3d !important;
    border-color: #8ad341 !important;
}

/* Hero buttons on gradient header sections */
.header .btn-primary {
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header .btn-outline {
    border: 2px solid white !important;
    color: white !important;
    background-color: transparent !important;
}

.header .btn-outline:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

/* Form controls using bg-dark — lift them off the card background */
.form-control.bg-dark,
.form-select.bg-dark {
    background-color: #1e2d3d !important;
    border-color: #4a5a6a !important;
    color: #e2e8f0 !important;
}

.form-control.bg-dark:focus,
.form-select.bg-dark:focus {
    background-color: #1e2d3d !important;
    border-color: #8ad341 !important;
    box-shadow: 0 0 0 0.2rem rgba(138, 211, 65, 0.18) !important;
    color: #e2e8f0 !important;
}

.form-control.bg-dark::placeholder,
.form-select.bg-dark::placeholder {
    color: #64748b !important;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #243652;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #8ad341;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Navigation - Enhanced Bootstrap Navigation */
.navbar-mint {
    background-color: #243652;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(138,211,65,0.18);
}

.navbar-dark .navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(220,232,245,0.82);
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #8ad341;
}

.navbar-dark .navbar-nav .nav-link .fas {
    font-size: 0.85rem;
}

.navbar-toggler {
    border: 1px solid rgba(138,211,65,0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Header */
.header {
    background: linear-gradient(135deg, #8ad341 0%, #62c1c2 100%);
    color: white;
    padding: 48px 0;
    text-align: center;
}

.header-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.header-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

/* Exercise grid */
.exercise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.exercise-card {
    background: white;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.exercise-card:hover {
    transform: translateY(-4px);
}

.exercise-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.exercise-content {
    padding: 20px;
}

.exercise-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #243652;
    margin: 0 0 8px 0;
}

.exercise-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-title {
        font-size: 2rem;
    }

    .navbar-nav {
        justify-content: center;
        width: 100%;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .exercise-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Performance inputs (load / reps) — stack vertically on mobile ── */
@media (max-width: 575px) {
    .perf-inputs {
        flex-direction: column !important;
        gap: 0.4rem !important;
    }
    .perf-inputs input {
        width: 100% !important;
    }
}

/* ── Active nav link ──────────────────────────────────────────────── */
.navbar-dark .navbar-nav .nav-link.active {
    color: #8ad341 !important;
    font-weight: 600;
}

/* ── Focus bar — ensure it clears bottom safe area on iOS ──────────── */
.focus-bar {
    padding-bottom: max(10px, env(safe-area-inset-bottom)) !important;
}

/* ── Input group password toggle — match form-control height ────── */
.input-group .btn-outline-secondary {
    border-left: none !important;
}
.input-group .form-control:focus + .btn-outline-secondary {
    border-color: #8ad341 !important;
}

/* ── Card hover: disable transform on mobile (prevents layout shift) ── */
@media (max-width: 575px) {
    .card:hover {
        transform: none !important;
    }
}

/* ── Weekly summary strip: wrap gracefully on small screens ─────── */
.weekly-summary-strip {
    flex-wrap: wrap;
    gap: 0.75rem !important;
}
.weekly-summary-strip > div {
    min-width: 70px;
}

/* ── Alert dismiss button visibility on light alerts ─────────────── */
.alert-success .btn-close,
.alert-info .btn-close,
.alert-warning .btn-close {
    filter: none;
}
.alert-danger .btn-close {
    filter: none;
}

/* Calendar styles */
.calendar-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ── Navbar polish: compact spacing + icon-only mode on medium widths ─
   Trainer/admin nav has many items. On lg (≥992 < 1200) we drop the
   text labels for the primary section so Profile / Logout / More
   always fit. On xl (≥1200) full labels return. Hamburger collapse
   handles ≤md as Bootstrap does. */
@media (min-width: 992px) {
    .navbar-mint .navbar-nav .nav-link { padding-left: .6rem; padding-right: .6rem; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-mint .navbar-nav .nav-link.nav-primary .nav-label { display: none; }
    .navbar-mint .navbar-nav .nav-link.nav-primary i.me-1 { margin-right: 0 !important; font-size: 1.05rem; }
    .navbar-mint .navbar-nav .nav-link.nav-primary { padding-left: .55rem; padding-right: .55rem; }
}
/* Dropdown items: clearer hover/active states on the More menu */
.navbar-mint .dropdown-menu .dropdown-item.active,
.navbar-mint .dropdown-menu .dropdown-item:active {
    background: #e8f6f6; color: #243652;
}
.navbar-mint .dropdown-menu .dropdown-item:hover { background: #f4fbfb; color: #243652; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ════════════════════════════════════════════════════════════════════
   EASY READ MODE  (body.easy-read)
   Optional comfort view for clients training without glasses or in
   sweaty/low-light conditions. Boosts text size, tap targets, contrast
   and spacing while keeping the MintPT premium look. Scoped under
   body.easy-read so it never affects users who don't opt in.
   ════════════════════════════════════════════════════════════════════ */

/* ── Base typography & contrast ───────────────────────────────────── */
body.easy-read                          { font-size: 18px; line-height: 1.55; color: #1a2536; }
body.easy-read p,
body.easy-read li,
body.easy-read label,
body.easy-read .form-text,
body.easy-read .card-body               { font-size: 1.04rem; }
body.easy-read h1, body.easy-read .h1   { font-size: 2.2rem; }
body.easy-read h2, body.easy-read .h2   { font-size: 1.75rem; }
body.easy-read h3, body.easy-read .h3   { font-size: 1.45rem; }
body.easy-read h4, body.easy-read .h4   { font-size: 1.25rem; }
body.easy-read h5, body.easy-read .h5   { font-size: 1.15rem; }

/* Kill weak/pale text — push everything to readable navy/charcoal */
body.easy-read .text-muted              { color: #4a5a6e !important; }
body.easy-read .form-text               { color: #4a5a6e !important; }
body.easy-read small,
body.easy-read .small                   { font-size: 0.95rem; color: #4a5a6e; }

/* Stronger card / list separation */
body.easy-read .card                    { border: 1.5px solid #cdd8e3; box-shadow: 0 1px 2px rgba(36,54,82,0.06); }
body.easy-read .card-header             { border-bottom: 1.5px solid #cdd8e3; }
body.easy-read .list-group-item         { border-color: #cdd8e3 !important; padding: 1rem 1.1rem; }
body.easy-read hr                       { border-top: 1.5px solid #cdd8e3; opacity: 1; }

/* ── Forms: bigger inputs, stronger borders ──────────────────────── */
body.easy-read .form-control,
body.easy-read .form-select             { font-size: 1.08rem; padding: 0.65rem 0.85rem;
                                          border: 1.5px solid #b6c4d4; min-height: 48px; }
body.easy-read .form-control:focus,
body.easy-read .form-select:focus       { border-color: #62c1c2; box-shadow: 0 0 0 0.22rem rgba(98,193,194,0.25); }
body.easy-read .input-group-text        { font-size: 1.02rem; border: 1.5px solid #b6c4d4; }
body.easy-read .form-label              { font-size: 1.02rem; font-weight: 600; color: #243652; margin-bottom: 0.4rem; }

/* Checkboxes & switches — bigger tap targets */
body.easy-read .form-check-input        { width: 1.4em; height: 1.4em; margin-top: 0.15em; border-width: 2px; }
body.easy-read .form-check-label        { font-size: 1.04rem; padding-left: 0.25rem; }
body.easy-read .form-switch .form-check-input { width: 3em; height: 1.6em; }

/* ── Buttons: bigger, more contrast ──────────────────────────────── */
body.easy-read .btn                     { font-size: 1.05rem; padding: 0.7rem 1.15rem;
                                          border-radius: 10px; min-height: 48px; font-weight: 600; }
body.easy-read .btn-sm                  { font-size: 0.98rem; padding: 0.5rem 0.85rem; min-height: 40px; }
body.easy-read .btn-lg                  { font-size: 1.18rem; padding: 0.9rem 1.4rem; min-height: 56px; }
body.easy-read .btn-outline-secondary   { border-width: 2px; color: #243652; border-color: #8aa0b8; }
body.easy-read .btn-outline-primary     { border-width: 2px; }

/* Mint primary CTA — stronger contrast */
body.easy-read .btn-mint,
body.easy-read .btn-primary             { background: #4fb4b5; border-color: #3a9e9f; color: #fff; }
body.easy-read .btn-mint:hover,
body.easy-read .btn-primary:hover       { background: #3a9e9f; border-color: #2f8c8d; color: #fff; }

/* ── Badges / pills — readable in bright light ──────────────────── */
body.easy-read .badge                   { font-size: 0.92rem; padding: 0.45em 0.7em; font-weight: 600; }

/* ── Progress bars — thicker ─────────────────────────────────────── */
body.easy-read .progress                { height: 14px; border-radius: 10px; }

/* ── Modals — easier close button, more breathing room ──────────── */
body.easy-read .modal-title             { font-size: 1.3rem; }
body.easy-read .modal-body              { font-size: 1.05rem; padding: 1.25rem 1.4rem; }
body.easy-read .modal-header,
body.easy-read .modal-footer            { padding: 1rem 1.4rem; }
body.easy-read .btn-close               { transform: scale(1.4); padding: 1rem; opacity: 0.85; }
body.easy-read .btn-close:hover         { opacity: 1; }

/* ── Tables ───────────────────────────────────────────────────────── */
body.easy-read .table                   { font-size: 1.02rem; }
body.easy-read .table > :not(caption) > * > * { padding: 0.85rem 0.75rem; }

/* ── Nav / dashboard chips ───────────────────────────────────────── */
body.easy-read .nav-link                { font-size: 1.05rem; padding: 0.7rem 1rem; }

/* ════════════════════════════════════════════════════════════════════
   WORKOUT-PAGE BOOSTS (Easy Read)
   Targets assignment detail / focus mode specifically.
   ════════════════════════════════════════════════════════════════════ */

/* Exercise names + sets/reps lines */
body.easy-read #exercise-list h4                            { font-size: 1.35rem !important; color: #243652; }
body.easy-read #exercise-list .fw-semibold                  { font-size: 1.18rem !important; }
body.easy-read #exercise-list .list-group-item              { padding: 1.1rem 1.15rem !important;
                                                              border-width: 1.5px !important; }
body.easy-read #exercise-list .list-group-item .fw-semibold { font-size: 1.18rem !important; }
body.easy-read #exercise-list .list-group-item .text-muted  { font-size: 1.02rem !important; color: #4a5a6e !important; }

/* Performance inputs (load / reps) */
body.easy-read .perf-inputs input       { font-size: 1.15rem !important; min-height: 52px !important;
                                          min-width: 90px !important; border: 2px solid #8aa0b8 !important;
                                          padding: 0.55rem 0.7rem !important; font-weight: 600; color: #243652; }
body.easy-read .perf-inputs input:focus { border-color: #62c1c2 !important;
                                          box-shadow: 0 0 0 0.22rem rgba(98,193,194,0.28) !important; }

/* Completion tick boxes — much bigger */
body.easy-read .ex-check                { transform: scale(1.6); margin: 0.4rem 0.5rem !important; }
body.easy-read .ex-done-label           { font-size: 1.02rem !important; padding-left: 0.5rem; }

/* Sticky / Focus Mode bottom bar */
body.easy-read .focus-bar               { padding: 0.7rem 0.8rem !important; }
body.easy-read .focus-bar .btn          { min-height: 52px !important; font-size: 1.05rem !important;
                                          padding: 0.6rem 1rem !important; }
body.easy-read .focus-bar .btn-jump     { padding-left: 0.85rem !important; padding-right: 0.85rem !important; }

/* Rest / countdown timer */
body.easy-read .rest-timer,
body.easy-read #rest-timer,
body.easy-read .timer-display,
body.easy-read [data-timer-display]     { font-size: 3rem !important; font-weight: 700; color: #243652;
                                          letter-spacing: 0.02em; }

/* Start workout button */
body.easy-read #btn-start-workout       { font-size: 1.12rem !important; padding: 0.7rem 1.3rem !important;
                                          min-height: 52px; }

/* In focus mode + easy read: extra-large workout text */
body.easy-read.focus-mode .card-header h2                              { font-size: 1.55rem !important; }
body.easy-read.focus-mode #exercise-list h4                            { font-size: 1.45rem !important; }
body.easy-read.focus-mode #exercise-list .list-group-item .fw-semibold { font-size: 1.22rem !important; }
body.easy-read.focus-mode #exercise-list .list-group-item .text-muted  { font-size: 1.05rem !important; }
body.easy-read.focus-mode .focus-bar .btn                              { min-height: 56px !important;
                                                                          font-size: 1.1rem !important; }

/* Make sure dashboard widgets, progression cards, PB cards still look
   premium — they inherit the bigger typography + stronger borders
   automatically; no overrides needed. */
