:root {
  --green-50: #f0fdf4;  --green-100: #dcfce7;  --green-500: #22c55e;
  --green-600: #16a34a; --green-700: #15803d;
  --yellow-100: #fef9c3; --yellow-500: #eab308; --yellow-600: #ca8a04;
  --red-100: #fee2e2;   --red-500: #ef4444;    --red-600: #dc2626;
  --blue-50: #eff6ff;   --blue-500: #3b82f6;   --blue-600: #2563eb;
  --purple-500: #8b5cf6;
  --gray-50: #f9fafb;   --gray-100: #f3f4f6;   --gray-200: #e5e7eb;
  --gray-300: #d1d5db;  --gray-400: #9ca3af;   --gray-500: #6b7280;
  --gray-600: #4b5563;  --gray-700: #374151;   --gray-800: #1f2937; --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --font: 'Times New Roman', Times, serif;
  --mono: 'Times New Roman', Times, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: var(--font); background: #f5f7fb; color: var(--gray-800); min-height: 100vh; }

/* ============ LOGIN ============ */
.login-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, #16a34a 0%, #059669 50%, #0ea5e9 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.login-card {
  background: #fff; border-radius: 24px;
  padding: 40px; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.login-brand { text-align: center; margin-bottom: 28px; }
.login-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: block;
  box-shadow: 0 4px 16px rgba(5,150,105,.25);
  object-fit: contain;
  background: #fff;
}
.login-brand h1 { font-size: 24px; color: var(--gray-800); margin-bottom: 6px; }
.login-brand p { color: var(--gray-500); font-size: 13px; }

.form-cell { margin-bottom: 14px; }
.form-cell label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--gray-600); margin-bottom: 6px;
}
.form-cell input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font); font-size: 14px;
}
.form-cell input:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.btn-login {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff; border: none; border-radius: 10px;
  font-family: var(--font); font-weight: 800; font-size: 15px;
  cursor: pointer; box-shadow: 0 4px 16px rgba(22,163,74,.3);
  transition: all .2s; margin-top: 6px;
}
.btn-login:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,.4); }
.login-hint {
  margin-top: 22px; padding: 12px; background: var(--gray-50);
  border-radius: 10px; font-size: 12px; color: var(--gray-600); text-align: center; line-height: 1.7;
}
.login-hint code {
  background: #fff; padding: 2px 6px; border-radius: 4px;
  font-family: var(--mono); color: var(--green-700); font-weight: 700;
}
.login-back {
  display: block; text-align: center; margin-top: 18px;
  color: var(--gray-500); text-decoration: none; font-size: 13px;
}
.login-back:hover { color: var(--green-600); }

/* ============ ALERTS ============ */
.alert {
  padding: 12px 16px; border-radius: 10px; margin-bottom: 14px;
  font-size: 13px; font-weight: 600;
}
.alert-error   { background: var(--red-100);   color: var(--red-600);   border-left: 4px solid var(--red-600); }
.alert-success { background: var(--green-100); color: var(--green-700); border-left: 4px solid var(--green-600); }
.alert-info    { background: var(--blue-50);   color: var(--blue-600);  border-left: 4px solid var(--blue-500); }

/* ============ LAYOUT ============ */
.has-layout { background: #f5f7fb; }
.admin-wrap { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

.sidebar {
  background: linear-gradient(180deg, var(--gray-900) 0%, #1a2233 100%);
  color: #fff;
  padding: 24px 16px;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.sb-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 0 8px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}
.sb-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.sb-title { font-size: 16px; font-weight: 800; }
.sb-sub { font-size: 11px; color: var(--gray-400); }

.sb-nav { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sb-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: 10px;
  color: var(--gray-300); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: all .2s;
  position: relative;
}
.sb-link:hover { background: rgba(255,255,255,.05); color: #fff; }
.sb-link.active {
  background: linear-gradient(90deg, rgba(34,197,94,.15), rgba(34,197,94,.05));
  color: #fff; border-left: 3px solid var(--green-500);
}
.sb-ic { font-size: 18px; }
.sb-badge {
  margin-left: auto;
  background: var(--red-500); color: #fff;
  padding: 2px 8px; border-radius: 10px;
  font-size: 11px; font-weight: 800;
}

.sb-foot {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
}
.sb-user { display: flex; align-items: center; gap: 10px; padding: 8px; }
.sb-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 16px;
}
.sb-name { font-size: 13px; font-weight: 700; }
.sb-role { font-size: 11px; color: var(--gray-400); text-transform: capitalize; }
.sb-logout {
  display: block; margin-top: 8px;
  padding: 10px; text-align: center;
  background: rgba(220,38,38,.15); color: #fca5a5;
  border-radius: 8px; text-decoration: none;
  font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.sb-logout:hover { background: rgba(220,38,38,.3); color: #fff; }

.content { padding: 28px; max-width: 100%; min-width: 0; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.topbar-title {
  font-size: 24px; font-weight: 800;
  color: var(--gray-800);
}
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar-date {
  font-size: 13px; color: var(--gray-500);
  font-family: var(--mono); font-weight: 600;
  background: #fff; padding: 8px 14px; border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

/* ============ KPI ============ */
.kpi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.kpi {
  background: #fff; border-radius: 16px; padding: 20px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid;
  transition: transform .2s;
}
.kpi:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.kpi-total    { border-color: var(--blue-500); }
.kpi-healthy  { border-color: var(--green-600); }
.kpi-prediabet { border-color: var(--yellow-500); }
.kpi-diabet   { border-color: var(--red-600); }

.kpi-icon {
  width: 56px; height: 56px;
  background: var(--gray-50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.kpi-total .kpi-icon    { background: var(--blue-50); }
.kpi-healthy .kpi-icon  { background: var(--green-50); }
.kpi-prediabet .kpi-icon{ background: var(--yellow-100); }
.kpi-diabet .kpi-icon   { background: var(--red-100); }

.kpi-info { flex: 1; }
.kpi-label { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.kpi-value {
  font-size: 28px; font-weight: 900;
  color: var(--gray-800); margin: 2px 0;
  font-family: var(--mono);
}
.kpi-extra { font-size: 11px; color: var(--gray-500); }

/* ============ CHARTS ============ */
.chart-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.chart-card {
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: var(--shadow-md);
}
.chart-wide { grid-column: span 2; }
.chart-head { margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.chart-head h3 { font-size: 15px; font-weight: 800; color: var(--gray-800); }
.chart-head p { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
.chart-body { height: 260px; position: relative; }

/* ============ TABLE ============ */
.table-card {
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: var(--shadow-md);
}
.table-wrap { overflow-x: auto; }
.adm-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 13px;
}
.adm-table thead th {
  text-align: left; padding: 12px;
  background: var(--gray-50);
  color: var(--gray-600);
  font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid var(--gray-200);
}
.adm-table thead th:first-child { border-top-left-radius: 10px; }
.adm-table thead th:last-child { border-top-right-radius: 10px; }
.adm-table tbody td {
  padding: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.adm-table tbody tr:hover { background: var(--gray-50); }
.adm-table a { color: var(--blue-600); text-decoration: none; font-weight: 700; }

.empty {
  text-align: center !important; padding: 40px !important;
  color: var(--gray-400); font-style: italic;
}
.muted { color: var(--gray-500); }
.small { font-size: 11px; }
.mono { font-family: var(--mono); }

.badge {
  display: inline-block; padding: 4px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
.badge-healthy   { background: var(--green-100); color: var(--green-700); }
.badge-prediabet { background: var(--yellow-100); color: var(--yellow-600); }
.badge-diabet    { background: var(--red-100); color: var(--red-600); }
.badge-model     { background: #e0f2fe; color: #0369a1; font-family: var(--mono); }

.btn-mini {
  display: inline-block; padding: 6px 12px;
  background: var(--gray-100); color: var(--gray-700);
  border-radius: 8px; text-decoration: none;
  font-size: 12px; font-weight: 600;
  transition: all .2s;
}
.btn-mini:hover { background: var(--green-600); color: #fff; }

.btn-link {
  color: var(--blue-600); text-decoration: none;
  font-size: 13px; font-weight: 700;
}
.btn-link:hover { text-decoration: underline; }

.btn-back {
  display: inline-block; margin-bottom: 16px;
  color: var(--gray-600); text-decoration: none;
  font-weight: 600; font-size: 13px;
}
.btn-back:hover { color: var(--green-700); }

/* ============ FILTER FORM ============ */
.filter-form {
  background: #fff; border-radius: 14px; padding: 16px;
  box-shadow: var(--shadow-md); margin-bottom: 16px;
}
.ff-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: flex-end;
}
.ff-cell { flex: 1 1 180px; min-width: 160px; }
.ff-cell label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--gray-500); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .5px;
}
.ff-input {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 9px; font-size: 13px;
  font-family: var(--font); background: #fff;
}
.ff-input:focus { outline: none; border-color: var(--green-500); }
.ff-input:disabled { opacity: .5; cursor: not-allowed; }
.ff-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-mini-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff !important; border: none;
}
.btn-mini-primary:hover { color: #fff !important; }
.btn-mini-excel {
  background: #16a34a; color: #fff !important;
}
.btn-mini-excel:hover { background: #15803d; color: #fff !important; }

.filter-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.chip {
  display: inline-block; padding: 8px 14px;
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: 999px; text-decoration: none;
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  transition: all .2s;
}
.chip:hover { border-color: var(--green-500); color: var(--green-700); }
.chip-active {
  background: var(--gray-800); color: #fff; border-color: var(--gray-800);
}
.chip-healthy.chip-active   { background: var(--green-600); border-color: var(--green-600); }
.chip-prediabet.chip-active { background: var(--yellow-600); border-color: var(--yellow-600); }
.chip-diabet.chip-active    { background: var(--red-600); border-color: var(--red-600); }

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 18px 0 4px;
}
.pg-btn {
  padding: 8px 14px; background: var(--gray-100);
  border-radius: 10px; text-decoration: none;
  font-size: 13px; font-weight: 600; color: var(--gray-700);
}
.pg-btn:hover { background: var(--green-600); color: #fff; }
.pg-info { font-size: 13px; color: var(--gray-500); font-weight: 600; }

/* ============ NOTIFICATIONS ============ */
.notif-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 16px; }
.notif-card {
  background: #fff; border-radius: 14px; padding: 18px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--red-600);
  transition: all .2s;
}
.notif-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.notif-seen { opacity: .7; border-left-color: var(--gray-400); }

.notif-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gray-100);
}
.notif-status { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--gray-600); }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-red { background: var(--red-500); }
.dot-gray { background: var(--gray-400); }
.pulse { animation: pulse 1.5s ease infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.4); }
  50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

.notif-body { margin-bottom: 14px; }
.notif-name { font-size: 16px; font-weight: 800; color: var(--gray-800); margin-bottom: 8px; }
.notif-meta { display: grid; gap: 4px; font-size: 12px; color: var(--gray-600); }

.notif-actions {
  display: flex; gap: 8px; padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.btn-mark {
  flex: 1; padding: 8px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff; border: none; border-radius: 8px;
  font-family: var(--font); font-weight: 700; font-size: 12px;
  cursor: pointer;
}
.btn-mark:hover { transform: translateY(-1px); }

/* ============ NEW NOTIF CARDS (workflow) ============ */
.notif-list { display: grid; gap: 16px; }
.notif-card2 {
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--gray-300);
  overflow: hidden;
  transition: all .2s;
}
.notif-card2.st-new       { border-left-color: var(--red-600); }
.notif-card2.st-reviewed  { border-left-color: var(--yellow-500); }
.notif-card2.st-blood     { border-left-color: #06b6d4; }
.notif-card2.st-diag      { border-left-color: #8b5cf6; }
.notif-card2.st-done      { border-left-color: var(--green-600); opacity: .85; }

.n2-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap; gap: 10px;
}
.n2-status { display: flex; align-items: center; gap: 8px; }
.n2-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red-500); display: inline-block;
}
.st-new .n2-dot       { background: var(--red-500); animation: pulse 1.5s infinite; }
.st-reviewed .n2-dot  { background: var(--yellow-500); }
.st-blood .n2-dot     { background: #06b6d4; }
.st-diag .n2-dot      { background: #8b5cf6; }
.st-done .n2-dot      { background: var(--green-600); }
.n2-st-label {
  font-size: 12px; font-weight: 800; color: var(--gray-700);
  text-transform: uppercase; letter-spacing: .5px;
}
.n2-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.n2-body {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 0;
}
.n2-patient {
  background: linear-gradient(135deg, var(--gray-50), #fff);
  padding: 18px;
  border-right: 1px solid var(--gray-100);
}
.n2-name { font-size: 16px; font-weight: 800; color: var(--gray-800); margin-bottom: 10px; }
.n2-grid { display: grid; gap: 6px; font-size: 12.5px; color: var(--gray-700); margin-bottom: 14px; }
.n2-actions-top { display: flex; gap: 6px; flex-wrap: wrap; }

.n2-workflow { padding: 12px 18px; }

.n2-section {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.n2-section[open] { border-color: var(--green-500); box-shadow: 0 2px 12px rgba(34,197,94,.08); }
.n2-section summary {
  list-style: none;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  cursor: pointer; user-select: none;
  background: var(--gray-50);
  font-size: 13px; font-weight: 700; color: var(--gray-700);
}
.n2-section summary::-webkit-details-marker { display: none; }
.n2-section[open] summary { background: linear-gradient(135deg, var(--green-50), #fff); }
.n2-sec-ic { font-size: 18px; }
.n2-sec-title { flex: 1; }
.n2-sec-done {
  font-size: 11px; color: var(--green-700); font-weight: 700;
  background: var(--green-100); padding: 3px 9px; border-radius: 999px;
}

.n2-form { padding: 14px; }
.n2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.n2-form .ff-cell { margin-bottom: 12px; }
.n2-form textarea.ff-input {
  font-family: var(--font); resize: vertical; padding: 10px 12px;
}
.n2-form-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.n2-history {
  padding: 12px 14px;
  display: grid; gap: 10px;
}
.n2-hist-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 14px;
  padding: 10px; background: var(--gray-50);
  border-radius: 8px; font-size: 12px;
}
.n2-hist-time { color: var(--gray-500); font-family: var(--mono); font-size: 11px; }
.n2-hist-body strong { display: block; color: var(--gray-800); margin-bottom: 2px; }
.n2-hist-action {
  display: inline-block; padding: 1px 8px;
  background: #e0f2fe; color: #0369a1;
  border-radius: 999px; font-size: 10px;
  font-weight: 700; text-transform: uppercase;
}
.n2-hist-note { color: var(--gray-700); margin-top: 4px; line-height: 1.5; }

.n2-completed {
  margin-top: 12px; padding: 10px 14px;
  background: linear-gradient(135deg, var(--green-100), #fff);
  border-left: 3px solid var(--green-600);
  border-radius: 8px;
  font-size: 13px; color: var(--green-700); font-weight: 600;
}

@media (max-width: 900px) {
  .n2-body { grid-template-columns: 1fr; }
  .n2-patient { border-right: none; border-bottom: 1px solid var(--gray-100); }
}

.empty-card {
  grid-column: 1 / -1;
  background: #fff; border-radius: 14px; padding: 48px;
  text-align: center; box-shadow: var(--shadow-md);
}
.empty-icon {
  width: 80px; height: 80px;
  background: var(--green-100); color: var(--green-600);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 40px; margin: 0 auto 16px;
}
.empty-card h3 { color: var(--gray-700); margin-bottom: 6px; }
.empty-card p { color: var(--gray-500); }

/* ============ DETAIL ============ */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.detail-card {
  background: #fff; border-radius: 14px; padding: 22px;
  box-shadow: var(--shadow-md);
}
.dt-title {
  font-size: 14px; font-weight: 800; color: var(--gray-800);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
}
.dt-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px;
}
.dt-row:last-child { border-bottom: none; }
.dt-row span { color: var(--gray-500); }
.dt-row strong { color: var(--gray-800); }

.dt-symp {
  display: flex; gap: 10px; padding: 7px 10px;
  margin: 4px 0; border-radius: 8px;
  background: var(--gray-50);
  color: var(--gray-400); font-size: 12px;
}
.dt-symp-on {
  background: var(--red-100); color: var(--red-600); font-weight: 700;
}

.dt-result-box {
  display: flex; gap: 12px; align-items: center;
  padding: 16px; background: var(--gray-50);
  border-radius: 10px; margin-bottom: 14px;
}
.dt-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
}
.dt-label { font-size: 18px; font-weight: 900; }

.btn-danger {
  padding: 10px; background: var(--red-100);
  color: var(--red-600); border: 1.5px solid var(--red-300, #fca5a5);
  border-radius: 10px; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 13px;
}
.btn-danger:hover { background: var(--red-600); color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-grid { grid-template-columns: 1fr; }
  .chart-wide { grid-column: span 1; }
  .detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .admin-wrap { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; }
  .content { padding: 16px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ================ ADMIN TIL TANLOVCHI ================ */
.adm-lang {
  display: inline-flex;
  gap: 4px;
  margin-right: 12px;
}
.adm-lang a {
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  letter-spacing: 0.4px;
  transition: background .12s;
}
.adm-lang a:hover { background: #e2e8f0; }
.adm-lang a.active {
  background: #16a34a;
  color: #fff;
  border-color: #15803d;
}
