:root {
        --bg: #faf7f2;
        --card: #ffffff;
        --ink: #2d2a26;
        --muted: #8a8378;
        --brand: #c0533e;
        --brand-soft: #fbe9e4;
        --accent: #3e7a5e;
        --accent-soft: #e4f2ea;
        --gold: #d9a441;
        --gold-soft: #faf1dd;
        --line: #ece6dc;
        --him: #4a6fa5;
        --her: #b0567c;
        --radius: 14px;
        --shadow: 0 2px 10px rgba(45, 42, 38, 0.06);
      }
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      body {
        font-family:
          "Segoe UI",
          system-ui,
          -apple-system,
          sans-serif;
        background: var(--bg);
        color: var(--ink);
        line-height: 1.5;
      }
      .wrap {
        max-width: 1080px;
        margin: 0 auto;
        padding: 0 20px 60px;
      }

      header {
        background: linear-gradient(135deg, #c0533e, #a03d2e);
        color: #fff;
        padding: 22px 0 0;
      }
      .head-inner {
        max-width: 1080px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
      }
      .logo {
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 0.3px;
      }
      .logo small {
        display: block;
        font-size: 12px;
        font-weight: 400;
        opacity: 0.85;
      }
      .couple {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
        border: 2px solid rgba(255, 255, 255, 0.7);
      }
      .avatar.him {
        background: var(--him);
      }
      .avatar.her {
        background: var(--her);
        margin-left: -12px;
      }
      .month-pick {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.35);
        color: #fff;
        border-radius: 8px;
        padding: 5px 10px;
        font-size: 13px;
      }

      nav {
        max-width: 1080px;
        margin: 16px auto 0;
        padding: 0 20px;
        display: flex;
        gap: 4px;
        overflow-x: auto;
      }
      nav button {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.75);
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 10px 10px 0 0;
        white-space: nowrap;
      }
      nav button.active {
        background: var(--bg);
        color: var(--brand);
      }
      nav button:hover:not(.active) {
        color: #fff;
      }

      .tab {
        display: none;
        padding-top: 24px;
      }
      .tab.active {
        display: block;
      }
      h2 {
        font-size: 20px;
        margin-bottom: 4px;
      }
      .sub {
        color: var(--muted);
        font-size: 13px;
        margin-bottom: 18px;
      }

      .grid {
        display: grid;
        gap: 16px;
      }
      .grid.cols-3 {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      }
      .grid.cols-2 {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      }
      .card {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 18px;
      }
      .card h3 {
        font-size: 15px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .stat {
        font-size: 26px;
        font-weight: 700;
      }
      .stat small {
        font-size: 13px;
        color: var(--muted);
        font-weight: 400;
      }
      .delta-good {
        color: var(--accent);
      }
      .delta-bad {
        color: var(--brand);
      }

      .bar {
        height: 8px;
        background: #f0ebe2;
        border-radius: 5px;
        overflow: hidden;
        margin-top: 6px;
      }
      .bar i {
        display: block;
        height: 100%;
        border-radius: 5px;
        background: var(--accent);
      }
      .bar i.warn {
        background: var(--gold);
      }
      .bar i.over {
        background: var(--brand);
      }

      .row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
      }
      .row:last-child {
        border-bottom: none;
      }
      .row .grow {
        flex: 1;
        min-width: 0;
      }
      .row .amt {
        font-weight: 700;
        white-space: nowrap;
      }
      .chip {
        font-size: 11px;
        padding: 2px 9px;
        border-radius: 20px;
        background: var(--brand-soft);
        color: var(--brand);
        font-weight: 600;
        white-space: nowrap;
      }
      .chip.green {
        background: var(--accent-soft);
        color: var(--accent);
      }
      .chip.gold {
        background: var(--gold-soft);
        color: #a2762a;
      }
      .chip.him {
        background: #e3ebf5;
        color: var(--him);
      }
      .chip.her {
        background: #f5e3ec;
        color: var(--her);
      }
      .meta {
        font-size: 12px;
        color: var(--muted);
      }

      form.inline {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 14px;
      }
      input,
      select,
      textarea {
        font: inherit;
        font-size: 13px;
        padding: 8px 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        color: var(--ink);
      }
      input:focus,
      select:focus,
      textarea:focus {
        outline: 2px solid var(--brand-soft);
        border-color: var(--brand);
      }
      button.btn {
        font: inherit;
        font-size: 13px;
        font-weight: 600;
        padding: 8px 16px;
        border: none;
        border-radius: 8px;
        background: var(--brand);
        color: #fff;
        cursor: pointer;
      }
      button.btn:hover {
        background: #a83f2c;
      }
      button.btn.ghost {
        background: transparent;
        color: var(--brand);
        border: 1px solid var(--brand);
      }
      button.icon {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--muted);
        font-size: 15px;
        padding: 4px;
      }
      button.icon:hover {
        color: var(--brand);
      }

      .stars {
        color: var(--gold);
        letter-spacing: 1px;
        font-size: 13px;
      }
      .rest-card {
        position: relative;
      }
      .rest-card .cuisine {
        font-size: 12px;
        color: var(--muted);
      }
      .review-box {
        background: var(--bg);
        border-radius: 10px;
        padding: 10px 12px;
        margin-top: 10px;
        font-size: 13px;
      }
      .review-box b {
        font-size: 12px;
      }

      .glists {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 16px;
      }
      .glist-chip {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 7px 14px;
        border-radius: 20px;
        border: 1px solid var(--line);
        background: var(--card);
        cursor: pointer;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
      }
      .glist-chip.active {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
      }
      .glist-chip .x {
        opacity: 0.6;
        font-size: 11px;
        padding: 0 2px;
      }
      .glist-chip .x:hover {
        opacity: 1;
      }
      .glist-chip.new {
        border-style: dashed;
        color: var(--muted);
        background: transparent;
      }
      .gsec-head {
        font-size: 14px;
        font-weight: 700;
        margin: 18px 0 10px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .gsec-head .cnt {
        font-size: 11px;
        font-weight: 600;
        background: var(--accent-soft);
        color: var(--accent);
        border-radius: 20px;
        padding: 2px 9px;
      }
      .gcat-head {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 14px 0 8px;
      }
      .gtiles {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
        gap: 10px;
      }
      .gtile {
        position: relative;
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 14px 6px 10px;
        text-align: center;
        cursor: pointer;
        user-select: none;
        transition:
          transform 0.08s ease,
          background 0.15s ease;
      }
      .gtile:hover {
        transform: translateY(-2px);
        border-color: var(--accent);
      }
      .gtile:active {
        transform: scale(0.95);
      }
      .gtile .ico {
        display: block;
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 6px;
      }
      .gtile .nm {
        display: block;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.25;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
      }
      .gtile .refill {
        display: block;
        margin-top: 5px;
        font-size: 9px;
        color: var(--accent);
        line-height: 1.2;
      }
      .refill-progress {
        height: 4px;
        margin: 7px 8px 0;
        background: #dbe8e0;
        border-radius: 999px;
        overflow: hidden;
      }
      .refill-progress i {
        display: block;
        height: 100%;
        background: var(--accent);
        border-radius: inherit;
        transition: width 0.2s ease;
      }
      .refill-progress.due i { background: var(--brand); }
      .gtile .refill.due { color: var(--brand); font-weight: 700; }
      .gtile.needed {
        background: var(--accent-soft);
        border-color: var(--accent);
      }
      .gtile .gtile-x {
        position: absolute;
        top: 2px;
        left: 4px;
        background: none;
        border: none;
        color: var(--muted);
        font-size: 11px;
        cursor: pointer;
        padding: 3px;
        opacity: 0;
      }
      .gtile:hover .gtile-x {
        opacity: 1;
      }
      .gtile .gtile-x:hover {
        color: var(--brand);
      }
      .gempty {
        border: 1px dashed var(--line);
        border-radius: 12px;
        padding: 22px 12px;
        text-align: center;
        color: var(--muted);
        font-size: 13px;
      }

      .split-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
      }
      .split-head h3 { margin: 0; }
      .check {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: #fff;
        color: var(--accent);
        cursor: pointer;
        flex: 0 0 auto;
      }
      .check.done { background: var(--accent); color: #fff; border-color: var(--accent); }
      .done-text { text-decoration: line-through; opacity: 0.55; }
      .mini-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 14px;
      }
      .mini-form .wide { grid-column: 1 / -1; }
      .mini-form button { justify-self: start; }
      .comment-list { margin-top: 8px; }
      .comment {
        background: var(--bg);
        border-radius: 8px;
        padding: 7px 9px;
        margin-top: 5px;
        font-size: 12px;
      }
      .goal-card .bar { margin: 10px 0 6px; }
      .poll-option {
        width: 100%;
        text-align: left;
        border: 1px solid var(--line);
        background: #fff;
        border-radius: 9px;
        padding: 9px 11px;
        margin-top: 7px;
        cursor: pointer;
        color: var(--ink);
      }
      .poll-option.voted { border-color: var(--brand); background: var(--brand-soft); }
      .pref {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
      }
      .pref:last-child { border-bottom: 0; }
      .pref input { width: 18px; height: 18px; }
      .callout {
        padding: 12px;
        border-radius: 10px;
        background: var(--accent-soft);
        color: var(--accent);
        font-size: 13px;
        margin-bottom: 14px;
      }
      .smart-refill {
        background: linear-gradient(135deg, var(--accent-soft), #f5fbf7);
        border: 1px solid #cfe5d8;
        border-radius: var(--radius);
        padding: 14px;
        margin: 14px 0;
      }
      .smart-refill .row { border-color: #cfe5d8; }

      .act-date {
        background: var(--brand-soft);
        color: var(--brand);
        border-radius: 10px;
        padding: 6px 10px;
        text-align: center;
        min-width: 56px;
        font-weight: 700;
        font-size: 13px;
        line-height: 1.2;
      }
      .act-date small {
        display: block;
        font-weight: 400;
        font-size: 10px;
        text-transform: uppercase;
      }

      .empty {
        color: var(--muted);
        font-size: 13px;
        text-align: center;
        padding: 20px 0;
      }
      .toolbar {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-bottom: 14px;
        flex-wrap: wrap;
      }
      .demo-note {
        background: var(--gold-soft);
        border: 1px solid #eeddb4;
        border-radius: 10px;
        padding: 10px 14px;
        font-size: 12.5px;
        color: #7a5b20;
        margin: 18px 0 6px;
      }
      footer {
        text-align: center;
        color: var(--muted);
        font-size: 12px;
        margin-top: 40px;
      }
      @media (max-width: 640px) {
        .stat {
          font-size: 22px;
        }
        nav button {
          padding: 9px 11px;
          font-size: 13px;
        }
        .mini-form { grid-template-columns: 1fr; }
        .mini-form .wide { grid-column: auto; }
      }

nav a.nav-link { background:transparent; border:0; color:rgba(255,255,255,.75); padding:10px 16px; font-size:14px; font-weight:600; cursor:pointer; border-radius:10px 10px 0 0; white-space:nowrap; text-decoration:none; }
nav a.nav-link.active { background:var(--bg); color:var(--brand); }
nav a.nav-link:hover:not(.active) { color:#fff; }

.quick-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(145px,1fr)); gap:10px; margin:14px 0 18px; }
.quick-link { display:flex; align-items:center; gap:10px; padding:13px 14px; background:var(--card); border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow); color:var(--ink); text-decoration:none; font-size:13px; font-weight:600; transition:transform .08s ease,border-color .15s ease; }
.quick-link:hover { transform:translateY(-2px); border-color:var(--brand); }
.quick-link span { font-size:22px; }

.grocery-add { margin-bottom:14px; }
.grocery-add-main { display:flex; gap:8px; }
.grocery-add-main input { flex:1; min-width:0; padding:11px 12px; }
.subtle-panel { border:1px solid var(--line); border-radius:11px; background:rgba(255,255,255,.55); margin:10px 0 14px; }
.subtle-panel > summary { list-style:none; cursor:pointer; padding:10px 12px; color:var(--muted); font-size:12px; font-weight:600; display:flex; align-items:center; gap:7px; }
.subtle-panel > summary::-webkit-details-marker { display:none; }
.subtle-panel > summary::after { content:"＋"; margin-left:auto; }
.subtle-panel[open] > summary::after { content:"−"; }
.subtle-content { padding:0 12px 12px; }
.grocery-options { display:flex; flex-wrap:wrap; gap:8px; padding-top:2px; }
.grocery-options input { width:58px; text-align:center; }
.grocery-options select { flex:1; min-width:125px; }
.shopping-head { display:flex; align-items:center; gap:8px; margin:18px 0 10px; }
.shopping-head h3 { margin:0; font-size:16px; }
.shopping-head .cnt { font-size:11px; background:var(--accent-soft); color:var(--accent); border-radius:20px; padding:2px 9px; }
.smart-refill.subtle-panel { background:rgba(228,242,234,.42); border-color:#d9e9df; padding:0; }
.smart-refill.subtle-panel .split-head { margin:0; }
.item-dialog { width:min(440px,calc(100% - 28px)); border:0; border-radius:16px; padding:0; color:var(--ink); box-shadow:0 20px 70px rgba(45,42,38,.25); }
.item-dialog::backdrop { background:rgba(45,42,38,.42); backdrop-filter:blur(2px); }
.dialog-body { padding:20px; }
.dialog-head { display:flex; align-items:flex-start; gap:10px; margin-bottom:16px; }
.dialog-head .ico { font-size:30px; }
.dialog-head .grow { flex:1; }
.dialog-head h3 { margin:0; font-size:18px; }
.dialog-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.dialog-field { display:flex; flex-direction:column; gap:5px; color:var(--muted); font-size:11px; }
.dialog-field.wide { grid-column:1/-1; }
.history-list { margin-top:7px; border-top:1px solid var(--line); }
.history-list .row { font-size:12px; }
.dialog-actions { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px; margin-top:18px; }
.hold-hint { text-align:center; margin-top:10px; color:var(--muted); font-size:11px; }
@media(max-width:640px){.grocery-options select{min-width:100%;}.grocery-add-main .btn{padding-left:13px;padding-right:13px;}}

/* module sample pages: inbox, play & stories, maintenance */
.quick-badge { margin-left:auto; font-size:11px; font-weight:700; background:var(--brand-soft); color:var(--brand); border-radius:20px; padding:1px 8px; }
.inbox-row { flex-wrap:wrap; }
.inbox-row .grow { min-width:160px; }
.service-row { flex-wrap:wrap; }
.service-row .grow { min-width:160px; }
.service-row .row-details > summary { list-style:none; cursor:pointer; font-size:11px; color:var(--muted); padding:3px 0; }
.service-row .row-details > summary::-webkit-details-marker { display:none; }
.service-row .row-details > summary::after { content:" ＋"; }
.service-row .row-details[open] > summary::after { content:" −"; }
.address-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
.address-row code { background:var(--bg); border:1px dashed var(--line); border-radius:8px; padding:8px 12px; font-size:12.5px; word-break:break-all; }
.evidence { background:var(--bg); border-radius:10px; padding:10px 12px; font-size:12.5px; color:var(--muted); white-space:pre-wrap; }
.proposal { display:flex; gap:10px; align-items:flex-start; border:1px solid var(--line); border-radius:10px; padding:10px 12px; margin-bottom:8px; }
.proposal-main { display:flex; gap:10px; align-items:flex-start; flex:1; min-width:0; cursor:pointer; }
.proposal-main .grow { flex:1; min-width:0; }
.proposal-main .grow .meta { display:block; }
.proposal .icon { flex:0 0 auto; }
.proposal input { width:16px; height:16px; margin-top:2px; flex:0 0 auto; }
.pack-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:12px; }
.pack-card { position:relative; }
.pack-fav { position:absolute; top:10px; right:10px; background:none; border:none; font-size:18px; cursor:pointer; color:var(--muted); }
.pack-fav.on { color:var(--gold); }
.session-box { background:linear-gradient(135deg,var(--accent-soft),#f5fbf7); border:1px solid #cfe5d8; border-radius:var(--radius); padding:16px; margin-bottom:16px; }
.step { display:flex; gap:10px; align-items:flex-start; padding:7px 0; border-bottom:1px solid #d9e9df; }
.step:last-of-type { border-bottom:0; }
.step.done .step-text { text-decoration:line-through; opacity:.55; }
.safety-callout { background:var(--brand-soft); border:1px solid #f0c9bf; color:#8c3a2b; border-radius:10px; padding:10px 12px; font-size:13px; margin-bottom:14px; }

/* module catalogue */
.module-discovery-link{display:flex;align-items:center;gap:11px;margin:-4px 0 18px;padding:11px 13px;border:1px dashed var(--line);border-radius:11px;color:var(--ink);text-decoration:none;background:rgba(255,255,255,.45)}
.module-discovery-link>span:first-child{display:grid;place-items:center;width:28px;height:28px;border-radius:9px;background:var(--brand-soft);color:var(--brand);font-size:20px}.module-discovery-link>span:nth-child(2){display:flex;flex-direction:column;flex:1}.module-discovery-link b{font-size:13px}.module-discovery-link small{color:var(--muted);font-size:11px;font-weight:400}.module-discovery-link:hover{border-color:var(--brand);background:var(--brand-soft)}
.back-link{display:inline-block;margin:20px 0 8px;color:var(--muted);font-size:12px;text-decoration:none}.back-link:hover{color:var(--brand)}
.module-hero{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px;margin:6px 0 28px;background:linear-gradient(135deg,var(--brand-soft),#fff8f3);border:1px solid #f0d2ca;border-radius:18px}.module-hero h2{margin:4px 0 5px}.module-hero .sub{margin:0;max-width:630px}
.eyebrow,.module-family{display:block;color:var(--brand);text-transform:uppercase;letter-spacing:.08em;font-size:10px;font-weight:800}.installed-summary{flex:0 0 auto;min-width:105px;text-align:center;padding:13px 16px;background:rgba(255,255,255,.72);border-radius:13px}.installed-summary strong{display:block;color:var(--brand);font-size:26px}.installed-summary span{color:var(--muted);font-size:11px}
.catalogue-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin:25px 0 11px}.catalogue-heading h3{margin:3px 0 0}.installed-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.installed-pill{display:flex;align-items:center;gap:10px;padding:12px;color:var(--ink);text-decoration:none;background:var(--card);border:1px solid var(--line);border-radius:12px}.installed-pill>span:first-child{font-size:24px}.installed-pill>span:last-child{display:flex;flex-direction:column;min-width:0}.installed-pill b{font-size:13px}.installed-pill small{color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.module-featured-grid,.module-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.module-grid{gap:10px}.module-card{display:flex;align-items:flex-start;gap:12px;padding:15px;background:var(--card);border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow)}.module-card.featured{padding:18px;border-color:#ead8d2}.module-card-main{flex:1;min-width:0}.module-card h3{margin:3px 0 5px;font-size:16px}.module-card p{margin:0;color:var(--muted);font-size:12.5px;line-height:1.45}
.module-icon{display:grid;place-items:center;flex:0 0 auto;width:42px;height:42px;border-radius:12px;font-size:22px}.module-icon.sage{background:var(--accent-soft)}.module-icon.clay{background:var(--brand-soft)}.module-icon.violet{background:#f0eafa}.module-icon.rose{background:#fdecef}.module-icon.gold{background:var(--gold-soft)}.module-icon.sky{background:#e9f4fb}.module-connections{margin-top:9px;color:var(--muted);font-size:11px}.module-connections span{color:var(--accent);font-weight:700}.module-install{align-self:center;white-space:nowrap}.module-install.is-added{background:var(--accent-soft);color:var(--accent);border-color:#cfe5d8}
.module-filters{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:12px}.module-filters .chip{cursor:pointer;border:1px solid var(--line)}.module-filters .chip.active{background:var(--brand);color:#fff;border-color:var(--brand)}.catalogue-note{margin-top:20px;padding:12px 14px;background:var(--bg);border-radius:10px;text-align:center;color:var(--muted);font-size:12px}.module-toast{position:fixed;left:50%;bottom:24px;z-index:20;transform:translate(-50%,15px);padding:10px 15px;background:var(--ink);color:#fff;border-radius:10px;font-size:12px;opacity:0;pointer-events:none;transition:.2s ease}.module-toast.show{opacity:1;transform:translate(-50%,0)}
@media(max-width:760px){.installed-strip{grid-template-columns:repeat(2,minmax(0,1fr))}.module-featured-grid,.module-grid{grid-template-columns:1fr}.module-card.featured{align-items:flex-start}}
@media(max-width:520px){.module-hero{align-items:flex-start;padding:17px}.installed-summary{min-width:72px;padding:10px}.installed-summary strong{font-size:22px}.catalogue-heading>.meta{display:none}.module-card{padding:13px}.module-icon{width:38px;height:38px;font-size:20px}.module-install{padding:8px 10px}}
