:root {
  --bg0: #f4f6f5;
  --bg1: #ffffff;
  --bg2: #edf2f0;
  --bg3: #e3e8e6;
  --accent: #0f6e56;
  --accent2: #1d9e75;
  --gold: #1d9e75;
  --text: #1f2d29;
  --muted: #6b7c76;
  --danger: #c0524b;
  --ok: #1d9e75;
  --warn: #c0524b;
  --border: rgba(20,45,38,.10);
  --card: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61,139,253,.15), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(120,80,200,.12), transparent 55%),
    linear-gradient(160deg, var(--bg0), var(--bg1));
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }

/* ===== Navigation ===== */
.tg-nav {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(15,20,25,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.tg-nav .logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-right: 32px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tg-nav .nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.tg-nav .nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.tg-nav .nav-link:hover { color: var(--text); background: rgba(255,255,255,.06); }
.tg-nav .nav-link.active { color: var(--text); background: rgba(61,139,253,.15); }
.tg-nav .nav-right { display: flex; align-items: center; gap: 12px; }
.tg-nav .user-info { color: var(--muted); font-size: .85rem; }
.tg-nav .logout-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}
.tg-nav .logout-btn:hover { color: var(--danger); border-color: rgba(240,113,120,.3); }

/* ===== Notification Bell ===== */
.tg-nav .bell-wrap { position: relative; }
.tg-nav .bell-btn {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.tg-nav .bell-btn:hover { color: var(--text); background: rgba(255,255,255,.06); }
.tg-nav .bell-dot {
  position: absolute; top: 3px; right: 0;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--danger);
  color: #fff;
  font-size: .68rem;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}
.tg-nav .bell-panel {
  position: absolute; top: 44px; right: 0;
  width: 340px;
  max-height: 430px;
  overflow-y: auto;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 200;
  display: none;
}
.tg-nav .bell-panel.open { display: block; }
.tg-nav .bell-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--muted);
  position: sticky; top: 0;
  background: var(--bg1);
}
.tg-nav .bell-panel-head button {
  border: none; background: none; color: var(--accent); cursor: pointer; font-size: .8rem;
  padding: 2px 6px; border-radius: 4px;
}
.tg-nav .bell-panel-head button:hover { background: rgba(61,139,253,.12); }
.tg-nav .bell-item {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  cursor: pointer;
  transition: background .15s;
}
.tg-nav .bell-item:hover { background: rgba(255,255,255,.04); }
.tg-nav .bell-item.unread { background: rgba(61,139,253,.08); }
.tg-nav .bell-item-title { font-size: .85rem; color: var(--text); font-weight: 600; }
.tg-nav .bell-item-content {
  font-size: .8rem; color: var(--muted); margin-top: 4px;
  white-space: pre-wrap; word-break: break-all; line-height: 1.5;
}
.tg-nav .bell-item-time { font-size: .72rem; color: var(--muted); margin-top: 6px; opacity: .7; }
.tg-nav .bell-empty { padding: 32px; text-align: center; color: var(--muted); font-size: .85rem; }

/* ===== Layout ===== */
.tg-container { max-width: 1200px; margin: 0 auto; padding: 24px; }
.tg-container.wide { max-width: 1400px; }

/* ===== Cards ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title .icon { font-size: 1.2rem; }

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card .stat-label { color: var(--muted); font-size: .85rem; margin-top: 4px; }
.stat-card .stat-link {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .8rem;
  cursor: pointer;
  transition: all .2s;
}
.stat-card .stat-link:hover {
  color: var(--text);
  border-color: rgba(61,139,253,.5);
  background: rgba(61,139,253,.12);
}

/* ===== Guild Banner ===== */
.guild-banner {
  background: linear-gradient(135deg, rgba(61,139,253,.12), rgba(120,80,200,.1));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.guild-banner h1 { font-size: 1.8rem; margin-bottom: 8px; }
.guild-banner .slogan { color: var(--gold); font-size: 1.05rem; margin-bottom: 12px; font-style: italic; }
.guild-banner .server-tag { color: var(--muted); font-size: .85rem; }
.guild-banner .description { margin-top: 16px; line-height: 1.7; color: var(--text); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-size: .9rem;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; }
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,.08); color: var(--text); border: 1px solid var(--border); }
.btn-danger { background: rgba(240,113,120,.15); color: var(--danger); border: 1px solid rgba(240,113,120,.3); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ===== Tables ===== */
.tg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.tg-table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.tg-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.tg-table tr:hover td { background: rgba(255,255,255,.02); }

/* ===== Forms ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-size: .85rem; color: var(--muted); }
.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.2);
  color: var(--text);
  outline: none;
  font-size: .9rem;
}
.form-input:focus { border-color: rgba(61,139,253,.5); box-shadow: 0 0 0 3px rgba(61,139,253,.1); }
textarea.form-input { resize: vertical; min-height: 80px; }

/* ===== Badges ===== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-success { background: rgba(127,217,154,.15); color: var(--ok); }
.badge-warn { background: rgba(240,192,74,.15); color: var(--warn); }
.badge-danger { background: rgba(240,113,120,.15); color: var(--danger); }
.badge-info { background: rgba(61,139,253,.15); color: var(--accent); }
.badge-muted { background: rgba(139,155,180,.15); color: var(--muted); }

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 90%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal h3 { margin-bottom: 16px; font-size: 1.1rem; }

/* ===== Feedback ===== */
.feedback-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}
.feedback-item .fb-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.feedback-item .fb-author { font-weight: 600; font-size: .9rem; }
.feedback-item .fb-content { color: var(--text); line-height: 1.6; font-size: .92rem; }
.feedback-item .fb-reply { margin-top: 12px; padding: 10px; background: rgba(61,139,253,.06); border-radius: 8px; font-size: .85rem; color: var(--muted); }
.feedback-item .fb-time { color: var(--muted); font-size: .8rem; }

/* ===== Misc ===== */
.empty-state { text-align: center; padding: 40px; color: var(--muted); }
.msg { min-height: 1.2em; font-size: .9rem; }
.msg.error { color: var(--danger); }
.msg.ok { color: var(--ok); }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.text-muted { color: var(--muted); }
.text-sm { font-size: .85rem; }

/* ===== Admin Permission Toggles ===== */
.perm-label {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 6px;
  font-size: .85rem;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
}
.perm-label input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: middle;
  cursor: pointer;
}
.perm-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: .5;
}

/* ============================================================
   青瓷清新风 v2 —— 侧边导航 + 浅色主题覆盖
   2026-08-12 上线（逆水寒黄金端游 → 清新青瓷风）
   ============================================================ */

/* ---- 页面背景 ---- */
body {
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(29,158,117,.09), transparent 60%),
    radial-gradient(700px 420px at 100% 0%, rgba(15,110,86,.06), transparent 55%),
    linear-gradient(160deg, #f7f9f8, #eef3f1);
  color: var(--text);
}
a { color: var(--accent); }
a:hover { color: var(--accent2); }

/* ---- 侧边导航栏 ---- */
.tg-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 216px;
  background: #ffffff;
  border-right: 1px solid rgba(20,45,38,.08);
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.side-logo {
  padding: 26px 16px 16px;
  border-bottom: 1px solid rgba(20,45,38,.06);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.side-logo .logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f6e56, #1d9e75);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(15,110,86,.22);
}
.side-logo .logo-mark svg { width: 24px; height: 24px; }
.side-logo .logo-text {
  font-family: "STKaiti", "KaiTi", "楷体", "PingFang SC", serif;
  font-size: 1.42rem;
  font-weight: 700;
  color: #0f6e56;
  letter-spacing: .14em;
}
.side-logo .logo-sub { font-size: .66rem; color: var(--muted); letter-spacing: .22em; }
.side-nav {
  flex: 1;
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.side-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #4a5b55;
  font-size: .92rem; font-weight: 500;
  transition: all .18s;
  position: relative;
}
.side-link svg { width: 19px; height: 19px; flex: none; opacity: .9; }
.side-link:hover { background: rgba(15,110,86,.06); color: #0f6e56; }
.side-link.active {
  background: linear-gradient(135deg, rgba(15,110,86,.12), rgba(29,158,117,.10));
  color: #0f6e56;
  font-weight: 600;
  box-shadow: inset 3px 0 0 #0f6e56;
}
.side-bottom { padding: 14px; border-top: 1px solid rgba(20,45,38,.06); }
.side-bell-cell { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.side-user {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  background: #f2f7f5;
  border: 1px solid rgba(15,110,86,.08);
  border-radius: 12px;
}
.side-avatar {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f6e56, #1d9e75);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem;
}
.side-user-name { font-size: .88rem; font-weight: 600; color: #1f2d29; line-height: 1.3; }
.side-user-role { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.side-logout {
  margin-top: 10px;
  width: 100%;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid rgba(192,82,75,.25);
  background: rgba(192,82,75,.05);
  color: #c0524b;
  font-size: .82rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all .18s;
}
.side-logout svg { width: 15px; height: 15px; }
.side-logout:hover { background: rgba(192,82,75,.12); }

/* ---- 侧边栏通知铃铛（浅色） ---- */
.tg-sidebar .bell-wrap { position: relative; }
.tg-sidebar .bell-btn {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(20,45,38,.10);
  background: #fff;
  color: #5a6b65;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.tg-sidebar .bell-btn:hover { color: #0f6e56; border-color: rgba(15,110,86,.4); background: rgba(15,110,86,.05); }
.tg-sidebar .bell-dot {
  position: absolute; top: -4px; right: -4px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: #c0524b;
  border: 2px solid #fff;
  color: #fff;
  font-size: .64rem;
  line-height: 13px;
  text-align: center;
  font-weight: 700;
}
.tg-sidebar .bell-panel {
  position: absolute;
  left: calc(100% + 14px);
  right: auto;
  bottom: 0;
  width: 330px;
  max-height: 420px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(20,45,38,.10);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15,40,33,.20);
  z-index: 300;
  display: none;
}
.tg-sidebar .bell-panel.open { display: block; }
.tg-sidebar .bell-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(20,45,38,.08);
  font-size: .85rem;
  color: #4a5b55;
  font-weight: 600;
  position: sticky; top: 0;
  background: #fff;
}
.tg-sidebar .bell-panel-head button {
  border: none; background: none; color: #0f6e56; cursor: pointer; font-size: .8rem;
  padding: 2px 6px; border-radius: 4px;
}
.tg-sidebar .bell-panel-head button:hover { background: rgba(15,110,86,.1); }
.tg-sidebar .bell-item {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(20,45,38,.06);
  cursor: pointer;
  transition: background .15s;
}
.tg-sidebar .bell-item:hover { background: rgba(15,110,86,.04); }
.tg-sidebar .bell-item.unread { background: rgba(15,110,86,.07); }
.tg-sidebar .bell-item-title { font-size: .85rem; color: #1f2d29; font-weight: 600; }
.tg-sidebar .bell-item-content {
  font-size: .8rem; color: #6b7c76; margin-top: 4px;
  white-space: pre-wrap; word-break: break-all; line-height: 1.5;
}
.tg-sidebar .bell-item-time { font-size: .72rem; color: #9bb5ac; margin-top: 6px; }
.tg-sidebar .bell-empty { padding: 32px; text-align: center; color: #9bb5ac; font-size: .85rem; }

/* ---- 内容区偏移（适配固定侧边栏） ---- */
.tg-container {
  max-width: none;
  margin-left: 232px;
  padding: 30px 34px 40px;
}
.tg-container.wide { max-width: none; }
#root { margin-left: 232px; }

/* ---- 卡片 ---- */
.card {
  background: #fff;
  border: 1px solid rgba(20,45,38,.08);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(20,45,38,.04);
}
.card-title { color: #1f2d29; }

/* ---- 看板 ---- */
.stat-card {
  background: #fff;
  border: 1px solid rgba(20,45,38,.08);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(20,45,38,.04);
  transition: transform .18s, box-shadow .18s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,110,86,.10); }
.stat-card .stat-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0f6e56;
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}
.stat-card .stat-label { color: #6b7c76; font-size: .85rem; margin-top: 6px; }
.stat-card .stat-link {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,110,86,.28);
  background: rgba(15,110,86,.05);
  color: #0f6e56;
  font-size: .8rem;
  cursor: pointer;
  transition: all .2s;
}
.stat-card .stat-link:hover {
  color: #fff;
  border-color: #0f6e56;
  background: #0f6e56;
}

/* ---- 帮会横幅（青瓷金匾） ---- */
.guild-banner {
  background: linear-gradient(135deg, #ffffff 0%, #ecf5f1 55%, #dcece6 100%);
  border: 1px solid rgba(20,45,38,.08);
  border-radius: 18px;
  padding: 36px 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(20,45,38,.05);
}
.guild-banner h1 {
  font-family: "STKaiti", "KaiTi", "楷体", serif;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #0f6e56;
  letter-spacing: .06em;
}
.guild-banner .slogan { color: #1d9e75; font-size: 1.05rem; margin-bottom: 12px; font-style: italic; }
.guild-banner .server-tag {
  display: inline-block;
  color: #3d5a50;
  font-size: .82rem;
  background: rgba(15,110,86,.08);
  border: 1px solid rgba(15,110,86,.16);
  padding: 3px 12px;
  border-radius: 999px;
  margin-right: 8px;
}
.guild-banner .description { margin-top: 16px; line-height: 1.7; color: #3d4f49; }
.banner-art {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 46%;
  pointer-events: none;
  opacity: .9;
}
.banner-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6e56, #1d9e75);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ---- 首页分区 ---- */
.home-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 960px) { .home-grid { grid-template-columns: 1fr; } }
.quick-list { display: flex; flex-direction: column; gap: 10px; }
.quick-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20,45,38,.07);
  background: #fff;
  transition: all .18s;
}
.quick-item:hover { border-color: rgba(15,110,86,.4); box-shadow: 0 4px 14px rgba(15,110,86,.10); transform: translateX(2px); }
.quick-icon {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: rgba(15,110,86,.08);
  color: #0f6e56;
  display: flex; align-items: center; justify-content: center;
}
.quick-icon svg { width: 20px; height: 20px; }
.quick-meta-name { font-weight: 600; color: #1f2d29; font-size: .9rem; }
.quick-meta-desc { font-size: .74rem; color: #9bb5ac; margin-top: 2px; }
.quick-arrow { margin-left: auto; color: #b5c9c1; font-size: .85rem; }
.quick-item:hover .quick-arrow { color: #0f6e56; }

/* ---- 公告 ---- */
#announcements .ann-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(20,45,38,.06);
}
#announcements .ann-item:last-child { border-bottom: none; }
#announcements .ann-title { font-weight: 600; color: #1f2d29; font-size: .94rem; }
#announcements .ann-time { color: #9bb5ac; font-size: .76rem; margin-left: 10px; white-space: nowrap; }
#announcements .ann-content { color: #5a6b65; line-height: 1.6; font-size: .86rem; margin-top: 6px; }

/* ---- 表单 / 表格 / 徽章 / 按钮 / 模态框（浅色适配） ---- */
.form-input {
  background: #fff;
  border: 1px solid rgba(20,45,38,.14);
  color: #1f2d29;
}
.form-input:focus { border-color: rgba(15,110,86,.5); box-shadow: 0 0 0 3px rgba(15,110,86,.10); }
select.form-input, select:not([class*="native"]) {
  appearance: auto;
  background-color: #fff;
  color: #1f2d29;
  padding-right: 28px;
  cursor: pointer;
}
.tg-table th { color: #0f6e56; background: rgba(15,110,86,.045); border-bottom: 1px solid rgba(20,45,38,.10); }
.tg-table td { border-bottom: 1px solid rgba(20,45,38,.05); }
.tg-table tr:hover td { background: rgba(15,110,86,.03); }
.badge { background: rgba(20,45,38,.06); color: #4a5b55; }
.badge-success { background: rgba(29,158,117,.13); color: #0f6e56; }
.badge-warn { background: rgba(192,82,75,.12); color: #c0524b; }
.badge-danger { background: rgba(192,82,75,.12); color: #c0524b; }
.badge-info { background: rgba(15,110,86,.12); color: #0f6e56; }
.badge-muted { background: rgba(107,124,118,.12); color: #6b7c76; }
.btn-primary { background: linear-gradient(135deg, #0f6e56, #1d9e75); color: #fff; }
.btn-secondary { background: #f0f4f2; color: #1f2d29; border: 1px solid rgba(20,45,38,.12); }
.btn-danger { background: rgba(192,82,75,.10); color: #c0524b; border: 1px solid rgba(192,82,75,.30); }
.modal-overlay { background: rgba(15,25,22,.35); }
.modal { background: #fff; border: 1px solid rgba(20,45,38,.10); box-shadow: 0 20px 50px rgba(15,40,33,.22); }
.feedback-item { background: #fff; box-shadow: 0 1px 3px rgba(20,45,38,.04); }
.feedback-item .fb-reply { background: rgba(15,110,86,.06); }
.empty-state { color: #9bb5ac; }
