/* ============================================================
   SOCIETY MANAGEMENT SYSTEM — STYLE
   Aesthetic: refined, trustworthy financial software.
   Deep emerald + warm neutrals, clean tabular numbers.
   ============================================================ */

:root {
  --bg:           #f4f6f5;
  --surface:      #ffffff;
  --surface-2:    #f8faf9;
  --ink:          #14201b;
  --ink-soft:     #5a6b64;
  --ink-faint:    #8a9892;
  --line:         #e3e9e6;
  --line-strong:  #d2dad6;

  --brand:        #0f6e52;   /* deep emerald */
  --brand-dark:   #0a503b;
  --brand-soft:   #e6f2ee;
  --brand-ring:   rgba(15,110,82,.18);

  --gold:         #b88a2e;
  --danger:       #c0392b;
  --danger-soft:  #fbeae8;
  --warn:         #b9791b;
  --warn-soft:    #fbf1de;
  --ok:           #1f8f5f;
  --ok-soft:      #e4f4ec;
  --info:         #2563a8;

  --radius:       14px;
  --radius-sm:    10px;
  --shadow-sm:    0 1px 2px rgba(20,32,27,.05), 0 1px 3px rgba(20,32,27,.04);
  --shadow-md:    0 4px 16px rgba(20,32,27,.07);
  --shadow-lg:    0 12px 40px rgba(20,32,27,.12);

  --sidebar-w:    256px;
  --font-display: 'Sora', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
}

/* ---------------- DARK THEME ---------------- */
[data-theme="dark"] {
  --bg:           #0b1411;
  --surface:      #121e1a;
  --surface-2:    #18261f;
  --ink:          #e8efeb;
  --ink-soft:     #9fb1a8;
  --ink-faint:    #6f827a;
  --line:         #233029;
  --line-strong:  #2f3f37;

  --brand:        #1f9c74;
  --brand-dark:   #157a5a;
  --brand-soft:   #152a22;
  --brand-ring:   rgba(31,156,116,.25);

  --gold:         #d6a740;
  --danger:       #e0685b;
  --danger-soft:  #2c1a18;
  --warn:         #d39a3e;
  --warn-soft:    #2a2113;
  --ok:           #34b27b;
  --ok-soft:      #122a20;
  --info:         #5a9bdc;

  --shadow-sm:    0 1px 2px rgba(0,0,0,.3), 0 1px 3px rgba(0,0,0,.25);
  --shadow-md:    0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.55);
}
[data-theme="dark"] .sidebar { background: #0a120f; }
[data-theme="dark"] .auth-wrap {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(31,156,116,.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(214,167,64,.08), transparent 55%),
    var(--bg);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; margin: 0; }

body.lang-bn, body.lang-bn .btn, body.lang-bn .input,
body.lang-bn h1, body.lang-bn h2, body.lang-bn h3, body.lang-bn h4, body.lang-bn h5 {
  font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.num { font-variant-numeric: tabular-nums; letter-spacing: -.01em; }

/* ---------------- LOGIN ---------------- */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(15,110,82,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(184,138,46,.08), transparent 55%),
    var(--bg);
}
.auth-card {
  width: 100%;
  max-width: 410px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 38px 34px 30px;
}
.auth-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 26px;
}
.auth-brand .logo {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  box-shadow: 0 6px 16px var(--brand-ring);
}
.auth-brand h1 { font-size: 19px; line-height: 1.15; }
.auth-brand p  { margin: 2px 0 0; font-size: 12.5px; color: var(--ink-faint); }
.auth-card h2  { font-size: 22px; margin-bottom: 4px; }
.auth-card .sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 24px; }

/* ---------------- FORM ELEMENTS ---------------- */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 7px;
}
.input, select.input, textarea.input {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, select.input:focus, textarea.input:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-ring);
}
.input::placeholder { color: var(--ink-faint); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border: none; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  cursor: pointer; transition: transform .08s, box-shadow .15s, background .15s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; box-shadow: 0 4px 14px var(--brand-ring);
}
.btn-primary:hover { box-shadow: 0 6px 20px var(--brand-ring); text-decoration: none; }
.btn-ghost { background: var(--surface-2); color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { background: #eef2f0; text-decoration: none; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 7px 13px; font-size: 13px; }

/* ---------------- LAYOUT SHELL ---------------- */
.layout { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  background: #0c1714;
  color: #c9d6d0;
  display: flex; flex-direction: column;
  position: fixed; top: 0; bottom: 0; left: 0;
  z-index: 40;
  transition: transform .25s ease;
}
.sidebar .brand {
  display: flex; align-items: center; gap: 11px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sidebar .brand .logo {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.sidebar .brand .name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: #fff; line-height: 1.1; }
.sidebar .brand .tag  { font-size: 11px; color: #7f928a; margin-top: 1px; }

.nav { padding: 14px 12px; overflow-y: auto; flex: 1; }
.nav .group-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: #6c7e76; margin: 16px 12px 8px; font-weight: 700;
}
.nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  color: #b6c5bd; font-size: 14px; font-weight: 500;
  margin-bottom: 2px; transition: background .12s, color .12s;
}
.nav a:hover { background: rgba(255,255,255,.06); color: #fff; text-decoration: none; }
.nav a.active { background: var(--brand); color: #fff; box-shadow: 0 4px 12px rgba(15,110,82,.4); }
.nav a svg { width: 18px; height: 18px; flex-shrink: 0; }

.sidebar .foot {
  padding: 14px 16px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12px; color: #6c7e76;
}

.main {
  flex: 1; margin-left: var(--sidebar-w);
  display: flex; flex-direction: column; min-width: 0;
}

.topbar {
  height: 64px; background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
  padding: 0 26px; position: sticky; top: 0; z-index: 30;
}
.topbar .page-title { font-size: 17px; font-weight: 600; flex: 1; }
.topbar .menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; }

.bell {
  position: relative; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; background: var(--surface-2);
  border: 1px solid var(--line); color: var(--ink-soft); cursor: pointer;
}
.bell:hover { background: #eef2f0; }
.bell .dot {
  position: absolute; top: 6px; right: 7px; min-width: 17px; height: 17px;
  padding: 0 4px; border-radius: 9px; background: var(--danger); color: #fff;
  font-size: 10.5px; font-weight: 700; display: grid; place-items: center;
  border: 2px solid var(--surface);
}

.user-chip { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
  font-size: 14px; flex-shrink: 0;
}
.user-chip .meta .nm { font-size: 13.5px; font-weight: 600; line-height: 1.1; }
.user-chip .meta .rl { font-size: 11.5px; color: var(--ink-faint); text-transform: capitalize; }

.content { padding: 26px; max-width: 1240px; width: 100%; }

/* ---------------- CARDS / STATS ---------------- */
.page-head { margin-bottom: 22px; }
.page-head h2 { font-size: 23px; }
.page-head p { color: var(--ink-soft); margin: 4px 0 0; font-size: 14px; }

.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.stat::after {
  content: ''; position: absolute; right: -20px; top: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--brand-soft); opacity: .5;
}
.stat .ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: var(--brand-soft); color: var(--brand-dark); position: relative; z-index: 1;
}
.stat .ico svg { width: 21px; height: 21px; }
.stat .label { font-size: 13px; color: var(--ink-soft); font-weight: 500; position: relative; z-index: 1; }
.stat .value { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-top: 2px; position: relative; z-index: 1; }
.stat.gold  .ico { background: #f6edd8; color: var(--gold); }
.stat.gold::after  { background: #f6edd8; }
.stat.danger .ico { background: var(--danger-soft); color: var(--danger); }
.stat.danger::after { background: var(--danger-soft); }
.stat.info .ico { background: #e4eefa; color: var(--info); }
.stat.info::after { background: #e4eefa; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.card .card-head {
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.card .card-head h3 { font-size: 16px; flex: 1; }
.card .card-body { padding: 20px; }

/* ---------------- TABLE ---------------- */
.table-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
table.tbl th {
  text-align: left; padding: 11px 14px; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint);
  font-weight: 700; border-bottom: 1.5px solid var(--line);
}
table.tbl td { padding: 13px 14px; border-bottom: 1px solid var(--line); }
table.tbl tr:last-child td { border-bottom: none; }
table.tbl tbody tr:hover { background: var(--surface-2); }

/* ---------------- BADGES ---------------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 99px; font-size: 12px; font-weight: 600;
}
.badge.ok     { background: var(--ok-soft); color: var(--ok); }
.badge.due    { background: var(--warn-soft); color: var(--warn); }
.badge.late   { background: var(--danger-soft); color: var(--danger); }
.badge.muted  { background: #eef2f0; color: var(--ink-soft); }
.badge.brand  { background: var(--brand-soft); color: var(--brand-dark); }

/* ---------------- FLASH ---------------- */
.flash {
  padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 18px;
  font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px;
  border: 1px solid transparent;
}
.flash.success { background: var(--ok-soft); color: var(--ok); border-color: #bfe6d2; }
.flash.error   { background: var(--danger-soft); color: var(--danger); border-color: #f3c9c4; }
.flash.info    { background: #e4eefa; color: var(--info); border-color: #c5dbf3; }

/* ---------------- MISC ---------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.muted { color: var(--ink-soft); }
.empty { text-align: center; padding: 40px 20px; color: var(--ink-faint); }
.empty svg { width: 44px; height: 44px; margin-bottom: 12px; opacity: .5; }
.divider { height: 1px; background: var(--line); margin: 18px 0; }
.row-end { display: flex; justify-content: flex-end; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------------- PHASE 5: REPORTS ---------------- */
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 180px; padding: 10px 0 0; }
.bar-chart .bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bar-chart .bar {
  width: 100%; max-width: 38px; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  min-height: 2px; transition: height .3s; position: relative;
}
.bar-chart .bar-val { font-size: 10.5px; color: var(--ink-soft); font-variant-numeric: tabular-nums; white-space: nowrap; }
.bar-chart .bar-lbl { font-size: 11px; color: var(--ink-faint); }

.ledger-amt.income  { color: var(--ok); font-weight: 600; }
.ledger-amt.expense { color: var(--danger); font-weight: 600; }

.breakdown { width: 100%; border-collapse: collapse; }
.breakdown td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.breakdown td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.breakdown tr.total td { border-top: 2px solid var(--line-strong); border-bottom: none; font-size: 16px; padding-top: 14px; }
.breakdown td.plus  { color: var(--ok); }
.breakdown td.minus { color: var(--danger); }

.seg { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:18px; }
.seg a { padding:8px 16px; border-radius:99px; border:1.5px solid var(--line-strong); background:var(--surface); font-size:13.5px; font-weight:600; color:var(--ink-soft); }
.seg a.active { background:var(--brand); color:#fff; border-color:var(--brand); }
.seg a:hover { text-decoration:none; }

/* ---------------- PHASE 6: NOTIFICATIONS ---------------- */
.notif-list { display: flex; flex-direction: column; }
.notif {
  display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--line);
  position: relative; transition: background .12s;
}
.notif:last-child { border-bottom: none; }
.notif.unread { background: var(--brand-soft); }
.notif .nicon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--surface-2); color: var(--ink-soft);
}
.notif .nicon svg { width: 19px; height: 19px; }
.notif .nicon.payment  { background: var(--ok-soft); color: var(--ok); }
.notif .nicon.reminder { background: var(--warn-soft); color: var(--warn); }
.notif .nicon.loan     { background: #e4eefa; color: var(--info); }
.notif .nbody { flex: 1; min-width: 0; }
.notif .ntitle { font-weight: 600; font-size: 14.5px; }
.notif .nmsg { color: var(--ink-soft); font-size: 13.5px; margin-top: 2px; }
.notif .ntime { color: var(--ink-faint); font-size: 12px; margin-top: 4px; }
.notif .nact { display: flex; gap: 6px; align-items: flex-start; }
.notif .ndot { position: absolute; left: 8px; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); transform: translateY(-50%); }

/* ---------------- TOPBAR TOGGLES ---------------- */
.top-btn {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--surface-2);
  border: 1px solid var(--line); color: var(--ink-soft); cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
}
.top-btn:hover { background: var(--brand-soft); color: var(--brand); }
.top-btn svg { width: 19px; height: 19px; }

/* ---------------- MOBILE BOTTOM NAV ---------------- */
.bottom-nav { display: none; }
@media (max-width: 900px) {
  .bottom-nav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
    background: var(--surface); border-top: 1px solid var(--line);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 16px rgba(0,0,0,.06);
  }
  .bottom-nav a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 6px 2px; color: var(--ink-faint); font-size: 10.5px; font-weight: 600;
    border-radius: 10px; text-decoration: none;
  }
  .bottom-nav a svg { width: 22px; height: 22px; }
  .bottom-nav a.active { color: var(--brand); }
  .main { padding-bottom: 70px; }
}

/* ---------------- RESPONSIVE ---------------- */
.overlay { display: none; position: fixed; inset: 0; background: rgba(12,23,20,.5); z-index: 35; }

/* ---------------- PHASE 2: MEMBERS ---------------- */
.toolbar {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 18px;
}
.toolbar .search {
  position: relative; flex: 1; min-width: 220px;
}
.toolbar .search svg {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--ink-faint);
}
.toolbar .search input { padding-left: 38px; }
.toolbar select.input { width: auto; min-width: 150px; }

.avatar-sm {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
  font-size: 13px; flex-shrink: 0; overflow: hidden;
}
.avatar-sm img { width: 100%; height: 100%; object-fit: cover; }
.cell-user { display: flex; align-items: center; gap: 11px; }
.cell-user .nm { font-weight: 600; line-height: 1.2; }
.cell-user .sub { font-size: 12px; color: var(--ink-faint); }

.actions { display: flex; gap: 6px; }
.icon-btn {
  width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); background: var(--surface); cursor: pointer;
  color: var(--ink-soft); transition: all .12s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }
.icon-btn.danger:hover { background: var(--danger-soft); color: var(--danger); border-color: #f0c4be; }
.icon-btn svg { width: 16px; height: 16px; }

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 44px; height: 25px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; cursor: pointer; inset: 0; background: var(--line-strong);
  border-radius: 99px; transition: .2s;
}
.switch .slider:before {
  content: ''; position: absolute; height: 19px; width: 19px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: .2s; box-shadow: var(--shadow-sm);
}
.switch input:checked + .slider { background: var(--brand); }
.switch input:checked + .slider:before { transform: translateX(19px); }

.toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-row .t-label { font-weight: 600; font-size: 14.5px; }
.toggle-row .t-desc  { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

/* Photo upload */
.photo-upload { display: flex; align-items: center; gap: 16px; }
.photo-preview {
  width: 72px; height: 72px; border-radius: 16px; object-fit: cover;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
  font-size: 26px; overflow: hidden; border: 1px solid var(--line); flex-shrink: 0;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }

/* Profile header */
.profile-head { display: flex; align-items: center; gap: 18px; margin-bottom: 4px; }
.profile-head .pic {
  width: 76px; height: 76px; border-radius: 18px; object-fit: cover;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
  font-size: 28px; overflow: hidden; flex-shrink: 0;
}
.profile-head .pic img { width: 100%; height: 100%; object-fit: cover; }
.profile-head h2 { font-size: 22px; }
.profile-head .meta { color: var(--ink-soft); font-size: 13.5px; margin-top: 2px; }

.info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.info-list .item { padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-list .item .k { font-size: 12px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .04em; }
.info-list .item .v { font-size: 15px; font-weight: 500; margin-top: 2px; }

@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); width: 280px; }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .topbar { height: 58px; padding: 0 14px; gap: 10px; }
  .topbar .page-title { font-size: 16px; }
  .topbar .menu-btn { display: block; }
  .overlay.show { display: block; }
  .grid-2, .form-row, .info-list { grid-template-columns: 1fr; }
  .content { padding: 14px; }
  .page-head h2 { font-size: 20px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .stat { padding: 14px; }
  .stat .value { font-size: 21px; }
  .card { border-radius: 16px; }
  .user-chip .meta { display: none; }
  .btn { padding: 12px 16px; }   /* bigger touch targets */
  table.tbl th, table.tbl td { padding: 11px 10px; }
}
