.le-settings {
    padding: 0;
    overflow: hidden;
}

.le-logo-img {
    width: 56px;
    height: 40px;
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.le-login-brand .le-logo-img {
    width: 68px;
    height: 46px;
}

.le-sidebar .le-logo-img {
    width: 48px;
    height: 34px;
}

.le-settings summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 22px;
    cursor: pointer;
    list-style: none;
}

.le-settings summary::-webkit-details-marker {
    display: none;
}

.le-settings summary strong,
.le-settings summary small {
    display: block;
}

.le-settings summary small {
    color: var(--muted);
    margin-top: 5px;
}

.le-settings summary > span:last-child {
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
}

.le-settings-body {
    border-top: 1px solid var(--line);
    padding: 20px 22px;
}

.le-settings-body > p {
    color: var(--muted);
    margin: 0 0 16px;
}

.le-settings-body > form + form {
    margin-top: 12px;
}

.le-settings-last {
    font-size: 12px;
    margin-top: 14px !important;
}

.le-create-lesson[open] summary > span:last-child {
    color: var(--muted);
}

.le-create-lesson textarea {
    width: 100%;
    min-height: 84px;
    resize: vertical;
    border: 1px solid #d9deea;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.le-create-lesson label small {
    display: inline;
    color: var(--muted);
    font-weight: 500;
}

.le-repeat-fields {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) auto minmax(180px, 1fr);
    align-items: end;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    background: #f7f6ff;
    border: 1px solid #e5e1ff;
}

.le-repeat-fields[hidden] {
    display: none;
}

.le-filter-spaced {
    margin-bottom: 18px;
}

.le-scheduler .le-panel-head {
    margin-bottom: 20px;
}

.le-schedule-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.le-schedule-steps li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8f9fc;
}

.le-schedule-steps li > span,
.le-step-number {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
}

.le-schedule-steps strong,
.le-schedule-steps small {
    display: block;
}

.le-schedule-steps small {
    color: var(--muted);
    margin-top: 2px;
}

.le-schedule-form {
    margin-top: 0;
}

.le-form-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 26px 0 14px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.le-form-section:first-of-type {
    margin-top: 0;
}

.le-form-section h3,
.le-setup-card h3 {
    margin: 0;
    font-size: 15px;
}

.le-form-section p,
.le-setup-card p,
.le-setup-intro p {
    color: var(--muted);
    margin: 3px 0 0;
    font-size: 12px;
}

.le-submit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.le-submit-row small {
    color: var(--muted);
}

.le-setup-intro {
    margin: 4px 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff7e8;
    color: #7a4b00;
}

.le-setup-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.le-setup-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.le-setup-card.needs-setup {
    border-color: #f0c36a;
    background: #fffdf8;
}

.le-setup-card.is-ready {
    border-color: #a7ddd3;
    background: #f3fbf9;
}

.le-setup-card header {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.le-setup-card header > span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f3b33d;
    color: #4d3100;
    font-weight: 850;
}

.le-setup-card.is-ready header > span {
    background: #bcece3;
    color: #087d78;
}

.le-quick-form {
    display: grid;
    gap: 11px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.le-quick-form label {
    display: grid;
    gap: 6px;
    color: #3f4b5f;
    font-size: 11px;
    font-weight: 750;
}

.le-quick-form input,
.le-quick-form select {
    width: 100%;
    min-width: 0;
    height: 40px;
    border: 1px solid #d9deea;
    border-radius: 9px;
    padding: 0 10px;
    background: #fff;
}

.le-inline-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.le-setup-help {
    margin-top: 14px;
    padding: 11px;
    border-radius: 9px;
    background: #fff4df;
    color: #7a4b00;
    font-size: 12px;
    line-height: 1.45;
}

.le-family-card li small {
    display: block;
    color: var(--muted);
    margin-top: 2px;
    font-size: 10px;
}

.le-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.le-back-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.le-family-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.le-student-list {
    display: grid;
    gap: 12px;
}

.le-student-row-card,
.le-student-editor > summary {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 14px;
    background: #fff;
}

.le-student-row-card h3,
.le-student-editor > summary strong {
    display: block;
    margin: 0;
    font-size: 14px;
}

.le-student-row-card p,
.le-student-editor > summary small {
    display: block;
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.le-student-editor {
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    overflow: hidden;
}

.le-student-editor > summary {
    border: 0;
    border-radius: 0;
    cursor: pointer;
    list-style: none;
}

.le-student-editor > summary::-webkit-details-marker {
    display: none;
}

.le-student-editor > summary > span:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.le-edit-label {
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
}

.le-student-editor > .le-form {
    margin: 0;
    padding: 18px;
    border-top: 1px solid var(--line);
    background: #fbfcfe;
}

.le-student-editor textarea {
    width: 100%;
    min-height: 72px;
    resize: vertical;
    border: 1px solid #d9deea;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.le-danger-link {
    color: var(--danger);
    font-size: 12px;
    font-weight: 750;
}

.le-add-student .le-settings-body {
    background: #fbfcfe;
}

.le-page-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: -8px 0 18px;
    color: var(--muted);
    font-size: 12px;
}

.le-setup-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.le-setup-actions .le-panel {
    margin: 0;
}

.le-setup-actions .le-panel > h2 {
    margin: 0;
}

.le-setup-actions .le-panel > p {
    margin: 5px 0 18px;
    color: var(--muted);
    font-size: 12px;
}

.le-reference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.le-reference-card {
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    overflow: hidden;
}

.le-reference-card > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    cursor: pointer;
    list-style: none;
}

.le-reference-card > summary::-webkit-details-marker {
    display: none;
}

.le-reference-card > summary strong,
.le-reference-card > summary small {
    display: block;
}

.le-reference-card > summary small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.le-reference-card > .le-form {
    margin: 0;
    padding: 18px;
    border-top: 1px solid var(--line);
    background: #fbfcfe;
}



/* v1.4 schedule calendar and editing */
.le-lesson-editor textarea {
    width: 100%;
    min-height: 88px;
    resize: vertical;
    border: 1px solid #d9deea;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.le-schedule-toolbar {
    justify-content: space-between;
}

.le-view-switch {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
}

.le-view-switch a {
    min-width: 92px;
    padding: 8px 13px;
    border-radius: 8px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.le-view-switch a.active {
    background: #eeeafe;
    color: var(--brand-dark);
}

.le-schedule-filter {
    flex-wrap: wrap;
}

.le-calendar-head {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 10px;
    margin: 4px 0 12px;
}

.le-calendar-head strong {
    text-align: center;
    font-size: 18px;
}

.le-calendar-nav {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--brand-dark);
    font-size: 26px;
    line-height: 1;
}

.le-calendar-nav:hover {
    background: #f4f1ff;
}

.le-calendar-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.le-calendar-grid {
    min-width: 980px;
    display: grid;
    grid-template-columns: repeat(7, minmax(140px, 1fr));
}

.le-calendar-weekdays > div {
    padding: 10px 12px;
    border-right: 1px solid var(--line);
    background: #f8f9fc;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.le-calendar-weekdays > div:last-child {
    border-right: 0;
}

.le-calendar-day {
    min-height: 150px;
    padding: 9px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    background: #fff;
}

.le-calendar-day:nth-child(7n) {
    border-right: 0;
}

.le-calendar-day.is-outside {
    background: #fafbfc;
    color: #9aa3b1;
}

.le-calendar-day.is-today {
    box-shadow: inset 0 0 0 2px rgba(91,67,214,.28);
}

.le-calendar-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.le-calendar-date span {
    display: none;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.le-calendar-date strong {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    font-size: 12px;
}

.le-calendar-day.is-today .le-calendar-date strong {
    background: var(--brand);
    color: #fff;
}

.le-calendar-events {
    display: grid;
    gap: 6px;
}

.le-calendar-event {
    display: block;
    padding: 8px 9px;
    border: 1px solid #dce7e5;
    border-left: 3px solid var(--cyan);
    border-radius: 9px;
    background: #f2fbfa;
    font-size: 11px;
    line-height: 1.25;
}

.le-calendar-event:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(32,45,72,.08);
}

.le-calendar-event strong,
.le-calendar-event small,
.le-event-time {
    display: block;
}

.le-calendar-event strong {
    margin: 2px 0;
    color: var(--ink);
}

.le-calendar-event small {
    color: var(--muted);
    margin-top: 2px;
}

.le-event-time {
    color: #087d78;
    font-weight: 850;
}

.le-calendar-event-completed {
    border-color: #ded8ff;
    border-left-color: var(--brand);
    background: #f5f3ff;
}

.le-calendar-event-cancelled {
    border-color: #ffd9d5;
    border-left-color: var(--danger);
    background: #fff6f5;
    opacity: .72;
}

.le-lesson-editor {
    border-color: #d9d2ff;
    box-shadow: 0 16px 38px rgba(91,67,214,.10);
}

.le-series-edit {
    padding: 16px;
    border: 1px solid #e1dcff;
    border-radius: 12px;
    background: #f8f6ff;
}

.le-series-edit h3 {
    margin: 0 0 4px;
    font-size: 14px;
}

.le-series-edit > p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 12px;
}
@media (max-width: 760px) {
    .le-calendar-grid {
        min-width: 0;
        grid-template-columns: 1fr;
    }

    .le-calendar-weekdays {
        display: none;
    }

    .le-calendar-day {
        min-height: 0;
        border-right: 0;
        padding: 12px;
    }

    .le-calendar-day.is-outside {
        display: none;
    }

    .le-calendar-date span {
        display: block;
    }

    .le-calendar-date {
        justify-content: flex-start;
        gap: 8px;
    }

    .le-view-switch {
        width: 100%;
    }

    .le-view-switch a {
        flex: 1;
    }
    .le-mobile-head .le-logo-img {
        width: 42px;
        height: 28px;
    }

    .le-settings summary,
    .le-settings-body {
        padding: 16px;
    }

    .le-repeat-fields {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .le-schedule-steps,
    .le-setup-grid,
    .le-setup-actions,
    .le-reference-grid {
        grid-template-columns: 1fr;
    }

    .le-page-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .le-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .le-submit-row .le-btn {
        width: 100%;
    }

    .le-family-summary {
        grid-template-columns: 1fr;
    }

    .le-card-actions {
        align-items: flex-end;
        flex-direction: column;
    }
}

/* v1.8.13 schedule sharing directory */
.le-schedule-share-range{margin-bottom:16px}.le-schedule-share-tools{display:grid;grid-template-columns:minmax(260px,1fr) minmax(220px,.45fr);gap:12px;align-items:end;margin:14px 0}.le-schedule-share-tools label{font-size:12px;font-weight:750;color:#3f4b5f;display:grid;gap:7px}.le-schedule-share-tools input,.le-schedule-share-tools select{width:100%;height:44px;border:1px solid #d9deea;border-radius:10px;padding:0 12px;background:#fff;color:var(--ink);outline:none}.le-schedule-share-tools input:focus,.le-schedule-share-tools select:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(91,67,214,.12)}.le-schedule-share-actions{display:flex;gap:7px;align-items:center;flex-wrap:wrap}.le-schedule-share-actions .le-btn{min-height:34px;padding:6px 10px;font-size:12px}.le-btn-disabled{opacity:.42;pointer-events:none}.le-schedule-share-panel .le-subtle{color:var(--muted);font-size:12px}.le-schedule-share-table td:last-child{min-width:235px}@media(max-width:760px){.le-schedule-share-tools{grid-template-columns:1fr}.le-schedule-share-range{align-items:stretch}.le-schedule-share-actions{min-width:210px}.le-schedule-share-actions .le-btn{width:auto}}

/* v1.9.3 account invitation tools */
.le-account-invites .le-reference-card{padding:16px;overflow:visible}
.le-account-invites .le-reference-card .le-panel-head{margin-bottom:8px}
.le-account-invites .le-reference-card .le-form{margin-top:12px}
.le-invite-copy-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px;margin:10px 0 6px}
.le-invite-copy-row input{width:100%;height:42px;border:1px solid #d9deea;border-radius:10px;padding:0 12px;background:#fff;color:var(--ink)}
@media(max-width:620px){.le-invite-copy-row{grid-template-columns:1fr}.le-account-invites .le-submit-row{align-items:stretch}.le-account-invites .le-submit-row .le-btn,.le-account-invites .le-submit-row button{width:100%}}


/* v1.9.5 teacher notes shared with Parent Portal */
.le-parent-note-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.le-parent-note-card{border:1px solid #e0e5ef;border-radius:15px;background:#fbfcff;padding:18px}.le-parent-note-card .le-panel-head{margin-bottom:12px}.le-parent-note-form{padding:14px;background:#fff;border:1px solid #e7eaf1;border-radius:12px;margin-bottom:14px}.le-parent-note-list{display:grid;gap:10px}.le-parent-note-item{border:1px solid #e3e7ef;border-radius:12px;background:#fff;padding:13px 14px}.le-parent-note-meta{display:flex;gap:8px 12px;align-items:center;flex-wrap:wrap;margin-bottom:7px;font-size:11px;color:var(--muted)}.le-parent-note-meta strong{font-size:12px;color:var(--ink)}.le-parent-note-text{font-size:13px;line-height:1.55;color:#354054;white-space:normal}.le-parent-note-item .le-danger-link{display:inline-block;margin-top:9px;font-size:11px}@media(max-width:760px){.le-parent-note-grid{grid-template-columns:1fr}}


/* v1.9.6 teacher practice visibility */
.le-practice-summary{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 14px}.le-practice-summary span{min-width:130px;padding:10px 12px;border:1px solid #e1e6ef;border-radius:11px;background:#fff}.le-practice-summary strong{display:block;font-size:17px;color:var(--ink)}.le-practice-summary small{display:block;margin-top:3px;color:var(--muted)}.le-practice-card .le-table-wrap{margin-top:10px}.le-practice-card table{font-size:12px}

/* v1.10.1 teacher practice achievements */
.le-practice-streak-pill{display:inline-flex;align-items:center;min-height:34px;padding:6px 10px;border-radius:999px;background:#fff5df;color:#80520d;font-size:11px;font-weight:800;white-space:nowrap}.le-practice-card .le-practice-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}.le-practice-card .le-practice-summary span{min-width:0}.le-practice-award-form{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:9px;align-items:end;margin:14px 0;padding:12px;border:1px solid #e5e7ef;border-radius:12px;background:#fff}.le-practice-award-form>div{display:grid;grid-template-columns:minmax(150px,1fr) minmax(150px,1fr);gap:8px;grid-column:1/-1}.le-practice-award-form label{display:grid;gap:5px;font-size:11px;font-weight:750;color:var(--muted)}.le-practice-award-form input,.le-practice-award-form select{width:100%;height:38px;border:1px solid #d9deea;border-radius:9px;padding:0 9px;background:#fff;color:var(--ink)}.le-practice-award-form>label{min-width:0}.le-teacher-award-list{display:flex;gap:7px;flex-wrap:wrap;margin:0 0 12px}.le-teacher-award-list>span{display:flex;gap:6px;align-items:center;padding:6px 8px;border:1px solid #ecdcb8;border-radius:999px;background:#fffaf0;font-size:10px}.le-teacher-award-list strong{font-size:10px}.le-teacher-award-list .le-danger-link{font-size:9px;margin-left:2px}.le-practice-tag-list{display:flex;gap:4px;flex-wrap:wrap}.le-practice-tag-list span{display:inline-flex;padding:3px 6px;border-radius:999px;background:#f0f2f7;color:#5d687d;font-size:9px;font-weight:750}.le-practice-card td small{display:block;color:var(--muted);font-size:9px;margin-top:2px}@media(max-width:760px){.le-practice-card .le-practice-summary{grid-template-columns:repeat(2,1fr)}.le-practice-award-form{grid-template-columns:1fr}.le-practice-award-form>div{grid-template-columns:1fr}.le-practice-award-form .le-btn{width:100%}}

/* v1.10.11 parent / guardian editor in the staff portal */
.le-parent-contact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.le-parent-contact-card{border:1px solid #e1e6ef;border-radius:15px;background:#fbfcff;overflow:hidden}
.le-parent-contact-card>header{display:grid;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:12px;padding:15px 16px;border-bottom:1px solid #e7ebf2;background:#fff}
.le-parent-contact-card h3{margin:0;font-size:15px;color:#202b3f}
.le-parent-contact-card header p{margin:3px 0 0;color:#748096;font-size:11px}
.le-contact-tags{display:flex;gap:5px;flex-wrap:wrap;justify-content:flex-end}
.le-contact-tag{display:inline-flex;align-items:center;min-height:25px;padding:4px 8px;border-radius:999px;background:#eef1f6;color:#596579;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.35px}
.le-contact-tag.is-primary{background:#eeeafe;color:#4d38bb}.le-contact-tag.is-billing{background:#e9f8f5;color:#087d78}.le-contact-tag.is-portal{background:#fff5df;color:#876019}
.le-parent-contact-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;padding:3px 16px 12px}
.le-parent-contact-facts>div{min-width:0;padding:11px 4px;border-bottom:1px solid #edf0f5}
.le-parent-contact-facts>div:nth-last-child(-n+2){border-bottom:0}
.le-parent-contact-facts span{display:block;margin-bottom:4px;color:#7a8598;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.55px}
.le-parent-contact-facts strong{display:block;color:#263247;font-size:12px;line-height:1.45;overflow-wrap:anywhere}
.le-parent-contact-facts small{display:block;margin-top:3px;color:#818b9d;font-size:10px;overflow-wrap:anywhere}
.le-parent-contact-facts a{color:#4d38bb}
.le-contact-address{grid-column:1/-1}
.le-parent-contact-editor{border-top:1px solid #e2e6ee;background:#fff}
.le-parent-contact-editor>summary{cursor:pointer;padding:12px 16px;color:#5338c9;font-size:11px;font-weight:800;list-style:none}
.le-parent-contact-editor>summary::-webkit-details-marker{display:none}
.le-parent-contact-editor>summary:before{content:'✎';margin-right:7px}
.le-parent-contact-editor[open]>summary{background:#f7f5ff;border-bottom:1px solid #e7e3fb}
.le-parent-contact-editor .le-form{margin:0;padding:16px}
.le-parent-contact-editor .le-field-help{margin:0 0 13px;padding:10px 12px;border-radius:9px;background:#f8f9fc;color:#6d788c;font-size:10px;line-height:1.5}
.le-parent-contact-editor .le-submit-row{margin-top:2px}
@media(max-width:980px){.le-parent-contact-grid{grid-template-columns:1fr}}
@media(max-width:600px){.le-parent-contact-card>header{grid-template-columns:42px minmax(0,1fr)}.le-contact-tags{grid-column:1/-1;justify-content:flex-start}.le-parent-contact-facts{grid-template-columns:1fr}.le-parent-contact-facts>div,.le-parent-contact-facts>div:nth-last-child(-n+2){border-bottom:1px solid #edf0f5}.le-parent-contact-facts>div:last-child{border-bottom:0}.le-contact-address{grid-column:auto}}

/* v1.10.13 WordPress admin parity inside Staff Portal */
.le-management-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 18px}
.le-management-tabs a{display:inline-flex;align-items:center;min-height:40px;padding:8px 12px;border:1px solid #dce2ec;border-radius:10px;background:#fff;color:#4d596f;text-decoration:none;font-size:12px;font-weight:800;transition:.15s ease}
.le-management-tabs a:hover{border-color:#bfc7d5;background:#fafbfe;color:#263247}
.le-management-tabs a.active{border-color:#6047d8;background:#f2efff;color:#5136ca;box-shadow:0 0 0 3px rgba(96,71,216,.08)}
.le-admin-parity{min-width:0}
.le-admin-parity>.le-app{max-width:none;margin:0;padding:0;color:var(--ink)}
.le-admin-parity>.le-app>.le-page-head{display:none}
.le-admin-parity .notice{margin:0 0 14px}
.le-admin-parity .card,.le-admin-parity .le-card{box-shadow:0 7px 24px rgba(29,39,64,.055)}
.le-admin-parity .widefat{width:100%}
.le-admin-parity table.widefat{font-size:12px}
.le-admin-parity table.widefat th,.le-admin-parity table.widefat td{white-space:normal}
.le-admin-parity .button{text-decoration:none}
.le-admin-parity code{overflow-wrap:anywhere;word-break:break-word}
.le-admin-parity .tablenav{margin:14px 0}
.le-admin-parity .description{color:#6f7b90;font-size:12px}
.le-admin-parity>div>h2:first-of-type{margin-top:4px}
@media(max-width:760px){.le-management-tabs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.le-management-tabs a{justify-content:center;text-align:center}.le-admin-parity{overflow-x:auto}.le-admin-parity>.le-app{min-width:0}.le-admin-parity .card,.le-admin-parity .le-card{padding:16px}.le-admin-parity table.widefat{display:block;overflow-x:auto;white-space:nowrap}.le-admin-parity table.widefat th,.le-admin-parity table.widefat td{white-space:nowrap}}
@media(max-width:420px){.le-management-tabs{grid-template-columns:1fr}}

/* v1.10.15 final mobile overrides loaded after portal.css */
@media(max-width:760px){
  html,body{max-width:100%;overflow-x:hidden}
  .le-schedule-share-actions{min-width:0!important}
  .le-schedule-share-table td:last-child{min-width:0!important}
  .le-admin-parity table.widefat.le-mobile-card-table{display:block;overflow:visible;white-space:normal;background:transparent;border:0}
  .le-admin-parity table.widefat.le-mobile-card-table thead{display:none}
  .le-admin-parity table.widefat.le-mobile-card-table tbody{display:grid;gap:10px}
  .le-admin-parity table.widefat.le-mobile-card-table tr{display:block;overflow:hidden;border:1px solid var(--line);border-radius:12px;background:#fff}
  .le-admin-parity table.widefat.le-mobile-card-table td{display:grid;grid-template-columns:minmax(96px,34%) minmax(0,1fr);gap:10px;width:100%;padding:10px 12px;border-top:1px solid var(--line);white-space:normal!important;overflow-wrap:anywhere}
  .le-admin-parity table.widefat.le-mobile-card-table td:first-child{border-top:0}
  .le-admin-parity table.widefat.le-mobile-card-table td::before{content:attr(data-label);color:#6d788d;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.45px}
  .le-admin-parity table.widefat.le-mobile-card-table td[data-label=""]{display:block}
  .le-admin-parity table.widefat.le-mobile-card-table td[data-label=""]::before{display:none}
}

/* v1.10.17 quick Parent Portal setup action on family contact cards */
.le-parent-portal-quick-action{display:flex;align-items:center;justify-content:space-between;gap:14px;margin:0 16px 14px;padding:13px 14px;border:1px solid #ddd7ff;border-radius:12px;background:linear-gradient(135deg,#f6f3ff,#fbfaff)}
.le-parent-portal-quick-action>div{min-width:0}
.le-parent-portal-quick-action strong,.le-parent-portal-quick-action small{display:block}
.le-parent-portal-quick-action strong{color:#34258f;font-size:12px}
.le-parent-portal-quick-action small{margin-top:3px;color:#6f7890;font-size:10.5px;line-height:1.45}
.le-parent-portal-quick-action form{margin:0;flex:0 0 auto}
.le-parent-portal-quick-action .le-btn{min-height:42px}
.le-parent-portal-quick-action.is-linked{border-color:#d8eade;background:linear-gradient(135deg,#f3fbf6,#fbfefc)}
.le-parent-portal-quick-action.is-linked strong{color:#26734b}
@media(max-width:620px){.le-parent-portal-quick-action{align-items:stretch;flex-direction:column}.le-parent-portal-quick-action form,.le-parent-portal-quick-action .le-btn{width:100%}}
/* v1.11.0 practice rewards */
.le-practice-card .le-practice-summary{grid-template-columns:repeat(5,minmax(0,1fr))}
@media(max-width:980px){.le-practice-card .le-practice-summary{grid-template-columns:repeat(3,1fr)}}
@media(max-width:760px){.le-practice-card .le-practice-summary{grid-template-columns:repeat(2,1fr)}}
