/*!
 * Lakulah Commission Tracker – Frontend Dashboard Styles
 * @package Lakulah_Commission
 * @version 1.3.18
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --lk-green:       #379237;
    --lk-green-light: #eaf4ea;
    --lk-green-mid:   #c8e6c8;
    --lk-green-dark:  #2a6e2a;
    --lk-white:       #ffffff;
    --lk-bg:          #ffffff;
    --lk-border:      #e8e8e8;
    --lk-text:        #1e2329;
    --lk-muted:       #6b7280;
    --lk-radius:      10px;
}

.lk-dashboard-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--lk-bg);
    color: var(--lk-text);
}

/* ── Header card ─────────────────────────────────────── */
.lk-dashboard-header {
    background: var(--lk-white);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-radius);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.lk-greeting {
    margin: 0 0 .2rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--lk-green);
    line-height: 1.1;
}
.lk-position-title {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lk-muted);
    margin: 0;
}

/* Bracket badge */
.lk-bracket-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: var(--lk-green-light);
    color: var(--lk-green-dark);
    border: 1px solid var(--lk-green-mid);
}

/* ── Stats grid ──────────────────────────────────────── */
.lk-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.lk-stat-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-radius);
    padding: 1.1rem 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.lk-stat-card.lk-stat-bracket {
    background: linear-gradient(135deg, var(--lk-green-light) 0%, #fff 100%);
    border-color: rgba(55,146,55,.2);
}
.lk-stat-label {
    display: block;
    font-size: .7rem;
    color: var(--lk-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .5rem;
    font-weight: 500;
}
.lk-stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lk-text);
    line-height: 1;
}
.lk-stat-value.lk-green { color: var(--lk-green); }
.lk-stat-sub {
    display: block;
    font-size: .72rem;
    color: var(--lk-muted);
    margin-top: .35rem;
}
.lk-stat-deductions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .2rem .4rem;
    font-size: .68rem;
    color: var(--lk-muted);
    margin-top: .4rem;
}
.lk-stat-deductions span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-bracket-rate {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 8px;
    background: var(--lk-green-light);
    color: var(--lk-green);
    border: 1px solid var(--lk-green-mid);
    border-radius: 20px;
    margin-left: .4rem;
    vertical-align: middle;
}
.lk-allowance-type-badge {
    display: inline-block;
    margin-top: .4rem;
    padding: 2px 10px;
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 1px solid var(--lk-green-mid);
    border-radius: 20px;
    color: var(--lk-green);
    background: var(--lk-green-light);
}

/* ── Rank Ladder ─────────────────────────────────────── */
.lk-rank-section { margin-bottom: 1.5rem; }
.lk-rank-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .9rem;
}
.lk-rank-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-radius);
    padding: 1rem .8rem;
    text-align: center;
    opacity: .55;
    transition: all .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
}
.lk-rank-card.lk-rank-earned {
    opacity: 1;
    border-color: rgba(55,146,55,.45);
}
.lk-rank-card.lk-rank-current {
    background: var(--lk-green-light);
    border-color: var(--lk-green);
    box-shadow: 0 0 0 2px rgba(55,146,55,.2);
}
.lk-rank-badge {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--lk-green);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
}
.lk-rank-card:not(.lk-rank-earned) .lk-rank-badge {
    background: #e5e7eb;
    color: #9ca3af;
}
.lk-rank-locked { font-size: .85rem; }
.lk-rank-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: .85rem;
    color: var(--lk-text, #1f2937);
    line-height: 1.25;
}
.lk-rank-card.lk-rank-current .lk-rank-title { color: var(--lk-green); }
.lk-rank-req {
    font-size: .7rem;
    color: var(--lk-muted);
    line-height: 1.35;
}
.lk-rank-card.lk-rank-earned .lk-rank-req strong { color: var(--lk-green); }
@media (max-width: 900px) {
    .lk-rank-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Rewards ─────────────────────────────────────────── */
.lk-rewards-section { margin-bottom: 1.5rem; }
.lk-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lk-green);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 .9rem;
}
.lk-rewards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.lk-reward-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-radius);
    padding: 1rem .9rem;
    transition: border-color .15s;
}
.lk-reward-card:hover { border-color: rgba(55,146,55,.35); }
.lk-reward-label {
    display: block;
    font-size: .68rem;
    color: var(--lk-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.4;
}
.lk-reward-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lk-text);
}

/* ── Cheque ──────────────────────────────────────────── */
.lk-cheque-section { margin-bottom: 2rem; }
.lk-cheque-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lk-green);
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center;
    margin: 0 0 1rem;
}
.lk-cheque {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', Georgia, serif;
}
.lk-cheque-bg {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(circle, #000 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}
.lk-cheque-inner { position: relative; z-index: 1; }
.lk-cheque-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.lk-cheque-logo-wrap { display: flex; flex-direction: column; gap: .3rem; }
.lk-cheque-logoimg { height: 60px; width: auto; object-fit: contain; }
.lk-cheque-label-sm {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #888;
    font-family: 'Inter', sans-serif;
}
.lk-cheque-ref {
    font-family: 'Courier New', monospace;
    font-size: .8rem;
    color: #666;
    letter-spacing: .06em;
    text-align: right;
}
.lk-cheque-date-row {
    text-align: right;
    margin-top: .75rem;
    font-size: .8rem;
    font-family: 'Inter', sans-serif;
    color: #555;
}
.lk-cheque-date-row strong {
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
    color: var(--lk-text);
    border-bottom: 1px solid var(--lk-text);
    padding-bottom: 2px;
    margin-left: .4rem;
}
.lk-cheque-payee-row {
    display: flex;
    align-items: flex-end;
    gap: .75rem;
    border-bottom: 1px solid var(--lk-text);
    padding-bottom: .35rem;
    margin: 1.25rem 0;
}
.lk-cheque-payto {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.lk-cheque-payee-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lk-text);
    flex: 1;
    letter-spacing: .02em;
}
.lk-cheque-amount-box {
    font-size: 1.5rem;
    font-weight: 700;
    padding: .25rem .75rem;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 200px;
    text-align: right;
    white-space: nowrap;
}
.lk-cheque-sum-row {
    display: flex;
    align-items: flex-end;
    gap: .75rem;
    border-bottom: 1px solid var(--lk-text);
    padding-bottom: .35rem;
    margin-bottom: 1.5rem;
}
.lk-cheque-sum-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.lk-cheque-sum-words {
    font-size: .95rem;
    font-style: italic;
    color: #555;
    flex: 1;
}
.lk-cheque-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.lk-cheque-footer-note {
    font-size: .7rem;
    color: #999;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.lk-cheque-sig {
    width: 200px;
    border-top: 1px solid var(--lk-text);
    padding-top: .3rem;
    text-align: center;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
    font-family: 'Inter', sans-serif;
}

/* ── Activity log ────────────────────────────────────── */
.lk-log-section { margin-bottom: 1rem; }
.lk-log-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.lk-no-log { color: var(--lk-muted); font-size: .875rem; margin: 0; }
.lk-log-list-front { list-style: none; padding: 0; margin: 0; }
.lk-log-entry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--lk-border);
}
.lk-log-entry:last-child { border-bottom: none; padding-bottom: 0; }
.lk-log-body { flex: 1; }
.lk-log-action {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    color: var(--lk-green);
    margin-bottom: .2rem;
}
.lk-log-detail {
    font-size: .8rem;
    color: var(--lk-muted);
}
.lk-log-time {
    font-size: .72rem;
    color: var(--lk-muted);
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}
.lk-login-notice {
    background: #fff8e1;
    border: 1px solid #ffe082;
    color: #7a5c00;
    padding: 1rem 1.25rem;
    border-radius: var(--lk-radius);
    font-size: .9rem;
}

/* ── Login Gateway ───────────────────────────────────── */
.lk-gateway-wrap {
    padding: 2rem 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.lk-gateway-card {
    background: var(--lk-white);
    border: 1px solid var(--lk-border);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    text-align: center;
}
.lk-gateway-logo-wrap { margin-bottom: 2rem; }
.lk-gateway-logo { height: 120px; width: auto; object-fit: contain; }
.lk-gateway-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--lk-green);
    margin: 0 0 .4rem;
}
.lk-gateway-sub { font-size: .95rem; color: var(--lk-muted); margin: 0 0 2.25rem; }

/* Choice buttons */
.lk-gateway-choices { display: flex; gap: 1.25rem; justify-content: center; }
.lk-portal-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .85rem;
    padding: 2.25rem 1.5rem;
    border: 2px solid var(--lk-border);
    border-radius: 14px;
    background: var(--lk-white);
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .12s;
    text-align: center;
}
.lk-portal-btn:hover {
    border-color: var(--lk-green);
    background: #f0f7f0;
    transform: translateY(-3px);
}
.lk-portal-icon { font-size: 2.75rem; line-height: 1; }
.lk-portal-label { font-size: 1rem; font-weight: 700; color: var(--lk-text); }
.lk-portal-desc { font-size: .78rem; color: var(--lk-muted); line-height: 1.5; }

/* Portal label header inside the form */
.lk-gf-portal-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .6rem .9rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}
.lk-gf-portal-admin {
    background: #f0f7f0;
    color: var(--lk-green-dark);
    border: 1px solid var(--lk-green-mid);
}
.lk-gf-portal-staff {
    background: #eef4ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}
.lk-gf-submit-admin {
    background: var(--lk-green-dark) !important;
}
.lk-gf-submit-admin:hover {
    background: #1f5c1f !important;
}

/* Login form */
.lk-gateway-form-wrap { text-align: left; }
.lk-gateway-error {
    background: #fde2e8;
    border: 1px solid #f5c6cb;
    color: #8b1a2f;
    font-size: .85rem;
    padding: .75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.lk-gateway-form { display: flex; flex-direction: column; gap: .9rem; }
.lk-gf-row { display: flex; flex-direction: column; gap: .35rem; }
.lk-gf-label { font-size: .82rem; font-weight: 600; color: var(--lk-text); }
.lk-gf-input {
    border: 1px solid var(--lk-border);
    border-radius: 8px;
    padding: .6rem .85rem;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
    box-sizing: border-box;
}
.lk-gf-input:focus {
    border-color: var(--lk-green);
    box-shadow: 0 0 0 3px rgba(55,146,55,.12);
}
.lk-gf-actions { display: flex; gap: .75rem; align-items: center; margin-top: .25rem; }
.lk-gf-back {
    background: var(--lk-white);
    color: var(--lk-muted);
    border: 1px solid var(--lk-border);
    border-radius: 8px;
    padding: .6rem 1rem;
    font-size: .85rem;
    cursor: pointer;
    transition: background .12s;
    font-family: 'Inter', sans-serif;
}
.lk-gf-back:hover { background: var(--lk-gray, #f7f8fa); }
.lk-gf-submit {
    flex: 1;
    background: var(--lk-green);
    color: var(--lk-white);
    border: none;
    border-radius: 8px;
    padding: .6rem 1.25rem;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .12s;
    font-family: 'Inter', sans-serif;
}
.lk-gf-submit:hover { background: var(--lk-green-dark); }

/* Already logged in notice */
.lk-already-in {
    background: var(--lk-green-light, #eaf4ea);
    border: 1px solid var(--lk-green-mid, #c8e6c8);
    color: var(--lk-green-dark, #2a6e2a);
    padding: .9rem 1.25rem;
    border-radius: var(--lk-radius);
    font-size: .9rem;
}
.lk-already-in a { color: var(--lk-green); font-weight: 600; }

/* ── Period countdown badge ──────────────────────────── */
.lk-period-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .15rem;
}
.lk-period-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--lk-muted);
    font-weight: 500;
}
.lk-period-days {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lk-green);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}
.lk-period-date {
    font-size: .72rem;
    color: var(--lk-muted);
    font-family: 'Courier New', monospace;
}

/* ── Withdrawal section ──────────────────────────────── */
.lk-withdrawal-section {
    margin-bottom: 1.5rem;
    background: var(--lk-white);
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.lk-withdrawal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.lk-btn-request-withdraw {
    background: var(--lk-green);
    color: #fff;
    border: none;
    padding: .45rem 1.1rem;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .12s;
}
.lk-btn-request-withdraw:hover { background: var(--lk-green-dark); }
.lk-pending-badge {
    font-size: .78rem;
    font-weight: 600;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 20px;
    padding: .25rem .9rem;
}
.lk-withdraw-form {
    background: var(--lk-gray);
    border: 1px solid var(--lk-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.lk-wf-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .6rem;
}
.lk-wf-row label { min-width: 120px; font-size: .83rem; font-weight: 600; color: var(--lk-text); }
.lk-wf-row input {
    flex: 1;
    border: 1px solid var(--lk-border);
    border-radius: 6px;
    padding: .4rem .7rem;
    font-size: .85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.lk-wf-row input:focus { border-color: var(--lk-green); }
.lk-wf-actions { display: flex; gap: .6rem; margin-top: .75rem; }
.lk-btn-submit-withdraw {
    background: var(--lk-green);
    color: #fff;
    border: none;
    padding: .45rem 1.1rem;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.lk-btn-submit-withdraw:disabled { opacity: .6; cursor: not-allowed; }
.lk-btn-cancel-withdraw {
    background: #fff;
    color: var(--lk-muted);
    border: 1px solid var(--lk-border);
    padding: .45rem 1rem;
    border-radius: 6px;
    font-size: .85rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.lk-wd-notice {
    padding: .55rem .9rem;
    border-radius: 6px;
    font-size: .83rem;
    margin-bottom: .7rem;
}
.lk-wd-notice-success { background: #d4edda; color: #155724; border: 1px solid #b1dfbb; }
.lk-wd-notice-error   { background: #fde2e8; color: #8b1a2f; border: 1px solid #f5c6cb; }

.lk-sub-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--lk-muted);
    margin: .9rem 0 .5rem;
}
.lk-wd-list { list-style: none; padding: 0; margin: 0; }
.lk-wd-entry {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--lk-border);
}
.lk-wd-entry:last-child { border-bottom: none; }
.lk-wd-body { flex: 1; }
.lk-wd-amount { display: block; font-weight: 700; font-size: .95rem; color: var(--lk-text); }
.lk-wd-note, .lk-wd-admin-note { display: block; font-size: .78rem; color: var(--lk-muted); margin-top: .15rem; }
.lk-wd-proof { font-size: .78rem; color: var(--lk-green); font-weight: 600; text-decoration: none; }
.lk-wd-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; }
.lk-wd-date { font-size: .72rem; color: var(--lk-muted); font-family: 'Courier New', monospace; }
.lk-wd-status { font-size: .7rem; font-weight: 700; padding: 2px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.lk-wd-status-pending  { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.lk-wd-status-approved { background: #d4edda; color: #155724; border: 1px solid #b1dfbb; }
.lk-wd-status-rejected { background: #fde2e8; color: #8b1a2f; border: 1px solid #f5c6cb; }

/* ── Commission History table ────────────────────────── */
.lk-history-section { margin-bottom: 1rem; }
.lk-history-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.lk-history-table thead th {
    background: var(--lk-green);
    color: #fff;
    font-weight: 600;
    font-size: .75rem;
    padding: .55rem .9rem;
    text-align: left;
}
.lk-history-table tbody td { padding: .55rem .9rem; border-bottom: 1px solid var(--lk-border); }
.lk-history-table tbody tr:last-child td { border-bottom: none; }
.lk-history-table tbody tr:nth-child(even) { background: #f9fafb; }
.lk-hist-bracket {
    background: var(--lk-green-light);
    color: var(--lk-green-dark);
    border: 1px solid var(--lk-green-mid);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.lk-green-text { color: var(--lk-green); font-weight: 700; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 780px) {
    .lk-dashboard-header { flex-direction: column; gap: .75rem; }
    .lk-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lk-rewards-grid { grid-template-columns: repeat(2, 1fr); }
    .lk-cheque { padding: 1.25rem 1rem; }
    .lk-cheque-payee-row { flex-wrap: wrap; }
    .lk-cheque-amount-box { min-width: unset; width: 100%; }
}
