:root{
    --ink:#18332f;
    --ink-2:#244640;
    --paper:#fffdf8;
    --canvas:#f4f0e6;
    --line:#ddd8c9;
    --muted:#6d756f;
    --jade:#1f7564;
    --jade-soft:#dfeee8;
    --sun:#d6a33f;
    --sun-soft:#f4e8c9;
    --coral:#c96958;
    --coral-soft:#f3dfda;
    --sky:#5c8fa7;
    --sky-soft:#dce8ec;
    --violet:#776f92;
    --violet-soft:#e8e4ef;
    --radius-lg:28px;
    --radius-md:18px;
}

*{
    box-sizing:border-box;
}

html{
    min-width:320px;
}

body{
    margin:0;
    color:var(--ink);
    background:
        radial-gradient(circle at 10% 8%, rgba(214,163,63,.09), transparent 24rem),
        radial-gradient(circle at 92% 72%, rgba(31,117,100,.06), transparent 28rem),
        var(--canvas);
    font-family:"IBM Plex Sans Arabic",Tahoma,Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
}

button,
input,
select{
    font:inherit;
}

a{
    color:inherit;
}

.app-shell{
    min-height:100vh;
    display:grid;
    grid-template-columns:108px minmax(0,1fr);
}

.side-rail{
    position:sticky;
    top:0;
    height:100vh;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    padding:22px 14px;
    background:var(--ink);
    color:#fff;
}

.brand-mark{
    width:54px;
    height:54px;
    margin:0 auto 32px;
    display:grid;
    place-items:center;
    text-decoration:none;
    background:var(--sun);
    color:var(--ink);
    border-radius:20px 20px 8px 20px;
    font-size:26px;
    font-weight:700;
}

.rail-nav{
    display:grid;
    gap:8px;
}

.rail-link{
    min-height:62px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    padding:7px 4px;
    border-radius:17px;
    color:#dce6e2;
    text-decoration:none;
    font-size:11px;
}

.rail-link.is-active{
    background:rgba(255,255,255,.10);
    color:#fff;
}

.rail-link.is-muted{
    opacity:.46;
}

.rail-dot{
    width:9px;
    height:9px;
    border:2px solid currentColor;
    border-radius:50%;
}

.rail-link.is-active .rail-dot{
    background:var(--sun);
    border-color:var(--sun);
}

.rail-version{
    margin-top:auto;
    text-align:center;
    font-size:10px;
    color:#89a59c;
}

.app-main{
    min-width:0;
}

.topbar{
    min-height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    padding:18px clamp(20px,4vw,52px);
    border-bottom:1px solid rgba(24,51,47,.10);
}

.workspace-block{
    display:flex;
    align-items:center;
    gap:15px;
    min-width:0;
}

.eyebrow{
    display:block;
    margin-bottom:5px;
    color:var(--jade);
    font-size:11px;
    font-weight:700;
    letter-spacing:.02em;
}

.workspace-select{
    width:min(330px,48vw);
    min-height:44px;
    border:1px solid var(--line);
    border-radius:14px;
    background:rgba(255,253,248,.78);
    color:var(--ink);
    padding:0 14px;
    outline:none;
}

.workspace-select:focus{
    border-color:var(--jade);
    box-shadow:0 0 0 3px rgba(31,117,100,.12);
}

.account-strip{
    display:flex;
    align-items:center;
    gap:10px;
}

.account-avatar{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:14px 14px 5px 14px;
    color:#fff;
    background:var(--coral);
    font-weight:700;
}

.account-copy{
    display:grid;
    line-height:1.35;
}

.account-copy strong{
    font-size:13px;
}

.account-copy span{
    color:var(--muted);
    font-size:10px;
}

.text-action{
    border:0;
    background:transparent;
    color:var(--coral);
    cursor:pointer;
    padding:8px;
}

.page-content{
    max-width:1460px;
    margin:0 auto;
    padding:34px clamp(20px,4vw,52px) 70px;
}

.page-intro{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:25px;
    margin-bottom:28px;
}

.page-intro h1{
    margin:0;
    font-size:clamp(26px,3vw,42px);
    line-height:1.22;
    letter-spacing:-.02em;
}

.page-intro p{
    max-width:700px;
    margin:10px 0 0;
    color:var(--muted);
    line-height:1.8;
    font-size:14px;
}

.workspace-badge{
    flex:none;
    display:flex;
    align-items:center;
    gap:8px;
    min-height:40px;
    padding:0 14px;
    border:1px solid var(--line);
    background:rgba(255,253,248,.65);
    border-radius:999px;
    font-size:12px;
}

.workspace-badge span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--jade);
}

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

.signal-card{
    position:relative;
    min-height:150px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:24px 24px 10px 24px;
    background:var(--paper);
    padding:20px;
}

.signal-card::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:52px;
    height:8px;
    border-radius:0 0 0 12px;
    background:var(--tone,var(--ink));
}

.signal-card strong{
    display:block;
    margin:12px 0 5px;
    font-size:36px;
    font-weight:700;
    letter-spacing:-.03em;
}

.signal-label{
    color:var(--muted);
    font-size:12px;
}

.signal-card small{
    color:var(--muted);
    font-size:11px;
}

.tone-jade{--tone:var(--jade)}
.tone-sun{--tone:var(--sun)}
.tone-coral{--tone:var(--coral)}
.tone-sky{--tone:var(--sky)}
.tone-violet{--tone:var(--violet)}
.tone-ink{--tone:var(--ink)}

.daily-board{
    margin-top:18px;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);
    gap:22px;
    padding:28px;
    color:#fff;
    background:var(--ink);
    border-radius:32px 32px 12px 32px;
}

.board-copy{
    align-self:center;
    max-width:580px;
}

.board-copy .eyebrow{
    color:#9fc5ba;
}

.board-copy h2{
    margin:0;
    font-size:27px;
}

.board-copy p{
    margin:10px 0 0;
    color:#c9d9d4;
    line-height:1.8;
    font-size:13px;
}

.quick-lanes{
    display:grid;
    gap:8px;
}

.lane{
    min-height:68px;
    display:flex;
    align-items:center;
    gap:13px;
    padding:11px 14px;
    border-radius:17px;
    background:rgba(255,255,255,.075);
}

.lane-index{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:13px;
    color:var(--ink);
    background:var(--sun);
    font-size:11px;
    font-weight:700;
}

.lane div{
    display:grid;
}

.lane strong{
    font-size:13px;
}

.lane small{
    color:#afc5bf;
    font-size:10px;
}

.modules-section{
    margin-top:30px;
}

.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:13px;
}

.section-heading h2{
    margin:0;
    font-size:21px;
}

.muted{
    color:var(--muted);
    font-size:12px;
}

.module-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
}

.module-card{
    min-height:84px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px;
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(255,253,248,.78);
}

.module-signal{
    flex:none;
    width:12px;
    height:42px;
    border-radius:999px;
    background:var(--tone);
}

.module-card div{
    display:grid;
    gap:4px;
}

.module-card strong{
    font-size:13px;
}

.module-card small{
    color:var(--muted);
    font-size:10px;
}

.guest-shell{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:26px;
}

.auth-composition{
    width:min(1120px,100%);
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(390px,.76fr);
    overflow:hidden;
    border:1px solid rgba(24,51,47,.10);
    border-radius:38px 38px 14px 38px;
    background:var(--paper);
}

.auth-story{
    min-height:620px;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:clamp(36px,6vw,80px);
    color:#fff;
    background:var(--ink);
}

.auth-story::after{
    content:"";
    position:absolute;
    width:330px;
    height:330px;
    left:-120px;
    bottom:-130px;
    border-radius:50%;
    border:60px solid rgba(214,163,63,.13);
}

.story-mark{
    width:62px;
    height:62px;
    display:grid;
    place-items:center;
    margin-bottom:36px;
    background:var(--sun);
    color:var(--ink);
    border-radius:22px 22px 8px 22px;
    font-size:30px;
    font-weight:700;
}

.story-kicker{
    color:#9fc5ba;
    font-size:12px;
    font-weight:700;
}

.auth-story h1{
    margin:13px 0 18px;
    font-size:clamp(35px,5vw,62px);
    line-height:1.22;
    letter-spacing:-.035em;
}

.auth-story p{
    max-width:590px;
    margin:0;
    color:#c9d9d4;
    line-height:2;
    font-size:14px;
}

.story-signals{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:35px;
}

.story-signals span{
    padding:8px 12px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    color:#d9e8e4;
    font-size:11px;
}

.auth-panel{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:clamp(30px,5vw,58px);
}

.auth-panel h2{
    margin:0;
    font-size:30px;
}

.stack-form{
    display:grid;
    gap:15px;
    margin-top:26px;
}

.field{
    display:grid;
    gap:7px;
    color:var(--ink);
    font-size:12px;
    font-weight:600;
}

.field input{
    width:100%;
    min-height:48px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    color:var(--ink);
    padding:0 13px;
    outline:none;
    font-size:16px;
}

.field input:focus{
    border-color:var(--jade);
    box-shadow:0 0 0 3px rgba(31,117,100,.11);
}

.two-fields{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.check-row{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:11px;
}

.primary-button{
    min-height:50px;
    border:0;
    border-radius:16px 16px 6px 16px;
    background:var(--jade);
    color:#fff;
    padding:0 20px;
    font-weight:700;
    cursor:pointer;
}

.primary-button:hover{
    background:#176453;
}

.form-alert{
    margin-top:18px;
    padding:12px 14px;
    border-radius:13px;
    background:var(--coral-soft);
    color:#8d3f33;
    font-size:12px;
}

.auth-foot{
    margin:22px 0 0;
    color:var(--muted);
    font-size:12px;
}

.auth-foot a{
    color:var(--jade);
    font-weight:700;
}

.account-type-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
}

.account-type{
    cursor:pointer;
}

.account-type input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.account-type-body{
    min-height:94px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
    padding:13px;
    border:1px solid var(--line);
    border-radius:18px 18px 7px 18px;
    background:#fff;
}

.account-type-body strong{
    font-size:13px;
}

.account-type-body small{
    color:var(--muted);
    line-height:1.55;
    font-size:10px;
}

.account-type input:checked + .account-type-body{
    border-color:var(--jade);
    background:var(--jade-soft);
    box-shadow:inset 0 0 0 1px var(--jade);
}

.school-field[hidden]{
    display:none;
}

@media (max-width:1050px){
    .signal-grid,
    .module-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .daily-board{
        grid-template-columns:1fr;
    }
}

@media (max-width:820px){
    .app-shell{
        grid-template-columns:1fr;
    }

    .side-rail{
        position:fixed;
        z-index:30;
        right:12px;
        left:12px;
        bottom:12px;
        top:auto;
        height:66px;
        padding:7px 10px;
        flex-direction:row;
        align-items:center;
        border-radius:22px;
        box-shadow:0 10px 30px rgba(24,51,47,.25);
    }

    .brand-mark{
        width:44px;
        height:44px;
        margin:0 0 0 9px;
        font-size:20px;
        border-radius:15px 15px 6px 15px;
    }

    .rail-nav{
        flex:1;
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:2px;
    }

    .rail-link{
        min-height:49px;
        font-size:9px;
    }

    .rail-version{
        display:none;
    }

    .topbar{
        min-height:auto;
        align-items:flex-start;
        padding:15px 17px;
    }

    .workspace-block{
        display:grid;
        gap:2px;
    }

    .workspace-select{
        width:min(52vw,310px);
    }

    .account-copy{
        display:none;
    }

    .page-content{
        padding:24px 16px 105px;
    }

    .auth-composition{
        grid-template-columns:1fr;
        border-radius:28px 28px 10px 28px;
    }

    .auth-story{
        min-height:auto;
        padding:34px 28px;
    }

    .auth-story h1{
        font-size:34px;
    }

    .story-mark{
        margin-bottom:22px;
    }
}

@media (max-width:560px){
    .page-intro{
        align-items:flex-start;
        flex-direction:column;
    }

    .signal-grid,
    .module-grid,
    .two-fields,
    .account-type-grid{
        grid-template-columns:1fr;
    }

    .signal-card{
        min-height:120px;
    }

    .daily-board{
        padding:21px;
    }

    .workspace-select{
        width:55vw;
    }

    .account-avatar{
        width:38px;
        height:38px;
    }

    .text-action{
        padding:5px;
        font-size:11px;
    }

    .guest-shell{
        padding:13px;
    }

    .auth-panel{
        padding:28px 22px;
    }
}

/* Academic Foundation 0.3 */

.soft-button,
.button-link{
    text-decoration:none;
}

.soft-button{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 16px;
    border:1px solid var(--line);
    border-radius:15px 15px 6px 15px;
    background:rgba(255,253,248,.72);
    color:var(--ink);
    font-size:12px;
    font-weight:700;
}

.success-banner{
    margin-bottom:18px;
    padding:13px 16px;
    border:1px solid rgba(31,117,100,.22);
    border-radius:16px;
    background:var(--jade-soft);
    color:#175747;
    font-size:12px;
}

.academic-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    align-items:start;
}

.setup-column{
    display:grid;
    gap:16px;
}

.setup-card{
    padding:22px;
    border:1px solid var(--line);
    border-radius:26px 26px 9px 26px;
    background:rgba(255,253,248,.86);
}

.setup-card.is-featured{
    background:
        linear-gradient(145deg,rgba(223,238,232,.70),rgba(255,253,248,.92));
}

.setup-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:19px;
}

.setup-head > div{
    display:grid;
    gap:3px;
}

.setup-head strong{
    font-size:15px;
}

.setup-head small{
    color:var(--muted);
    font-size:10px;
}

.step-chip{
    width:42px;
    height:42px;
    flex:none;
    display:grid;
    place-items:center;
    border-radius:14px 14px 5px 14px;
    background:var(--ink);
    color:var(--sun);
    font-size:11px;
    font-weight:700;
}

.compact-form{
    display:grid;
    gap:12px;
}

.field select,
.field textarea{
    width:100%;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    color:var(--ink);
    padding:11px 13px;
    outline:none;
    font-size:16px;
}

.field select{
    min-height:48px;
}

.field textarea{
    resize:vertical;
    line-height:1.8;
}

.field select:focus,
.field textarea:focus{
    border-color:var(--jade);
    box-shadow:0 0 0 3px rgba(31,117,100,.11);
}

.inline-form{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:8px;
}

.inline-form input{
    min-height:48px;
    border:1px solid var(--line);
    border-radius:14px;
    padding:0 13px;
    outline:none;
    font-size:16px;
}

.tag-cloud{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-top:14px;
}

.tag-cloud > span{
    padding:7px 11px;
    border-radius:999px;
    background:var(--sky-soft);
    color:#315f72;
    font-size:10px;
    font-weight:600;
}

.mini-list{
    display:grid;
    gap:7px;
    margin-top:16px;
    padding-top:15px;
    border-top:1px dashed var(--line);
}

.mini-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:50px;
}

.mini-row > div{
    display:grid;
}

.mini-row strong{
    font-size:12px;
}

.mini-row small{
    color:var(--muted);
    font-size:9px;
}

.status-pill{
    padding:6px 9px;
    border-radius:999px;
    font-size:9px;
    font-weight:700;
}

.status-pill.is-good{
    background:var(--jade-soft);
    color:var(--jade);
}

.tiny-action{
    border:0;
    background:var(--sun-soft);
    color:#765719;
    border-radius:10px;
    padding:6px 9px;
    font-size:9px;
    cursor:pointer;
}

.section-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin-top:16px;
}

.section-chip{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    padding:11px 12px;
    border:1px solid rgba(24,51,47,.10);
    border-radius:14px;
    background:#fff;
}

.section-chip span{
    min-width:0;
    color:var(--muted);
    font-size:10px;
}

.section-chip strong{
    flex:none;
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border-radius:9px;
    background:var(--sun-soft);
    color:#765719;
    font-size:11px;
}

.empty-callout{
    padding:13px;
    border:1px dashed var(--line);
    border-radius:14px;
    color:var(--muted);
    font-size:11px;
    line-height:1.7;
}

.setup-note{
    margin:15px 0 0;
    color:var(--muted);
    line-height:1.8;
    font-size:10px;
}

.primary-button.button-link{
    display:flex;
    align-items:center;
    justify-content:center;
}

.empty-screen{
    display:grid;
    justify-items:start;
    gap:7px;
    padding:30px;
    border:1px dashed var(--line);
    border-radius:25px;
    background:rgba(255,253,248,.7);
}

.empty-screen.is-inline{
    width:100%;
    min-height:180px;
    align-content:center;
}

.empty-screen strong{
    font-size:16px;
}

.empty-screen p{
    margin:0 0 9px;
    color:var(--muted);
    font-size:11px;
}

.students-layout{
    display:grid;
    grid-template-columns:230px minmax(0,1fr);
    gap:16px;
    align-items:start;
}

.class-rail{
    position:sticky;
    top:112px;
    padding:17px;
    border:1px solid var(--line);
    border-radius:24px 24px 8px 24px;
    background:rgba(255,253,248,.82);
}

.class-list{
    display:grid;
    gap:7px;
}

.class-item{
    min-height:55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    text-decoration:none;
    color:var(--ink);
}

.class-item:hover{
    background:rgba(31,117,100,.06);
}

.class-item.is-active{
    color:#fff;
    background:var(--ink);
}

.class-item span{
    font-size:10px;
}

.class-item strong{
    width:28px;
    height:28px;
    flex:none;
    display:grid;
    place-items:center;
    border-radius:9px;
    background:var(--sun);
    color:var(--ink);
    font-size:11px;
}

.students-main{
    min-width:0;
}

.student-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:18px;
    margin-bottom:13px;
}

.student-header h2{
    margin:0;
    font-size:23px;
}

.student-count{
    padding:7px 11px;
    border-radius:999px;
    background:var(--jade-soft);
    color:var(--jade);
    font-size:10px;
    font-weight:700;
}

.bulk-panel{
    margin-bottom:13px;
    padding:15px 17px;
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(255,253,248,.8);
}

.bulk-panel summary{
    cursor:pointer;
    font-size:12px;
    font-weight:700;
}

.bulk-panel[open] summary{
    margin-bottom:14px;
}

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

.student-card{
    min-height:110px;
    position:relative;
    display:grid;
    grid-template-columns:44px minmax(0,1fr);
    align-items:center;
    column-gap:10px;
    padding:15px;
    border:1px solid var(--line);
    border-radius:19px 19px 7px 19px;
    background:var(--paper);
}

.student-avatar{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    grid-row:1 / span 2;
    border-radius:14px 14px 5px 14px;
    background:var(--sky-soft);
    color:#315f72;
    font-weight:700;
}

.student-card strong{
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    font-size:12px;
}

.student-index{
    position:absolute;
    left:10px;
    top:9px;
    color:#a1a49d;
    font-size:8px;
    font-weight:700;
}

.student-ready{
    width:max-content;
    padding:3px 7px;
    border-radius:999px;
    background:var(--jade-soft);
    color:var(--jade);
    font-size:8px;
    font-weight:700;
}

@media (max-width:1050px){
    .academic-layout{
        grid-template-columns:1fr;
    }

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

@media (max-width:820px){
    .students-layout{
        grid-template-columns:1fr;
    }

    .class-rail{
        position:static;
        padding:12px;
        overflow-x:auto;
    }

    .class-list{
        display:flex;
        width:max-content;
    }

    .class-item{
        min-width:145px;
    }
}

@media (max-width:560px){
    .section-list,
    .student-grid,
    .inline-form{
        grid-template-columns:1fr;
    }

    .setup-card{
        padding:17px;
    }

    .student-card{
        min-height:92px;
    }
}

.sync-source-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin:18px 0;
}

.sync-source-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:20px;
  border:1px solid var(--line);
  border-radius:22px 8px 22px 8px;
  background:var(--paper);
}

.sync-source-card.is-ready{
  border-color:#8eb9aa;
}

.sync-source-mark{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  flex:0 0 48px;
  border-radius:14px 5px 14px 5px;
  background:var(--ink);
  color:#fff;
  font-weight:800;
  font-size:20px;
}

.sync-source-card h2{
  margin:3px 0 6px;
}

.sync-source-card p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.8;
}

.sync-state{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  background:#dfeee8;
  color:#1f7564;
  font-size:12px;
  font-weight:700;
}

.sync-state.is-pending{
  background:#eee8da;
  color:#8a6a2c;
}

.sync-run-row{
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
}

.sync-run-row:last-child{
  border-bottom:0;
}

.sync-run-row strong,
.sync-run-row span{
  display:block;
}

.sync-run-row > div:first-child span{
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
}

.sync-run-numbers{
  display:flex;
  gap:14px;
  font-weight:700;
}

.sync-run-status{
  padding:5px 9px;
  border-radius:999px;
  background:#e6eee9;
  font-size:11px;
}

@media(max-width:760px){
  .sync-source-grid{
    grid-template-columns:1fr;
  }

  .sync-run-row{
    grid-template-columns:1fr;
  }

  .sync-run-numbers{
    justify-content:flex-start;
  }
}
