@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* â”€â”€â”€ Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --brand:        #1b4332;
  --brand-mid:    #2d6a4f;
  --brand-light:  #40916c;
  --accent:       #d97706;
  --accent-hover: #b45309;
  --bg:           #f0f4f8;
  --surface:      #ffffff;
  --border:       #e2e8f0;
  --border-light: #f1f5f9;
  --text:         #0f172a;
  --text-2:       #334155;
  --muted:        #64748b;
  --success:      #16a34a;
  --success-bg:   #f0fdf4;
  --danger:       #dc2626;
  --danger-bg:    #fef2f2;
  --warning:      #d97706;
  --warning-bg:   #fffbeb;
  --info:         #2563eb;
  --info-bg:      #eff6ff;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:       0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-md:    0 8px 24px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.04);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    14px;
  --sidebar-w:    260px;
  /* iOS Aesthetic Design Tokens */
  --pms-gutter:   24px;
  --ios-radius:    18px;
  --ios-shadow:    0 8px 32px 0 rgba(0, 0, 0, 0.05);
  --ios-border:    1px solid rgba(255, 255, 255, 0.2);
  --glass-bg:     rgba(255, 255, 255, 0.7);
  --glass-blur:    blur(20px);
  --brand-gradient: linear-gradient(135deg, #054d3b 0%, #0a7a5f 100%);
}

/* â”€â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 15px; }

body {
  margin: 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 50%, #f0f4f8 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

p { margin-top: 0; }

a { color: var(--brand-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

/* â”€â”€â”€ Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container  { width: min(1160px, 94%); margin: 0 auto; }
.muted      { color: var(--muted); }
.small      { font-size: 13px; }
.text-right { text-align: right; }
.mt-0       { margin-top: 0; }
.mb-0       { margin-bottom: 0; }
.w-50       { width: min(720px, 100%); margin-inline: auto; }

/* â”€â”€â”€ Layout helpers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.grid   { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.flex   { display: flex; }
.hero   { display: flex; justify-content: space-between; align-items: center; gap: 16px; }

/* â”€â”€â”€ Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

/* â”€â”€â”€ Alerts â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid transparent;
}
.alert.success { background: #dcfce7; color: #14532d; border-left-color: #16a34a; border-left-width: 4px; font-weight: 600; }
.alert.error   { background: #fee2e2; color: #7f1d1d; border-left-color: #dc2626; border-left-width: 4px; font-weight: 600; }

/* â”€â”€â”€ Badges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(45, 106, 79, 0.08);
  color: #1b4332;
  border: 1px solid rgba(45, 106, 79, 0.2);
  white-space: nowrap;
}
.badge.ok  { background: var(--success-bg); color: #166534; border-color: #bbf7d0; }
.badge.bad { background: var(--danger-bg);  color: #991b1b; border-color: #fecaca; }
.badge.warn { background: var(--warning-bg); color: #92400e; border-color: #fde68a; }

/* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
button, .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: var(--ios-radius);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  color: #fff;
  background: var(--brand-mid);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
button:hover, .btn:hover {
  background: var(--brand);
  box-shadow: var(--shadow);
  transform: scale(0.98);
  text-decoration: none;
  color: #fff;
}
.btn.accent   { background: #2d6a4f; }
.btn.accent:hover { background: #1b4332; }
.btn.secondary { background: #fff; color: #1b4332; border-color: rgba(27, 67, 50, 0.2); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.btn.secondary:hover { background: #f0f4f8; color: #1b4332; }
.btn.danger   { background: #991b1b; }
.btn.danger:hover { background: #7f1d1d; }
.btn.sm { padding: 6px 12px; font-size: 13px; border-radius: var(--radius-sm); }

/* â”€â”€â”€ Forms â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1b4332;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

input, select, textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(64,145,108,.15);
  background: rgba(255,255,255,0.9);
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { margin-bottom: 14px; }

/* â”€â”€â”€ Tables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--ios-radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

th {
  padding: 11px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

td {
  padding: 12px 14px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #0f172a;
  vertical-align: middle;
  font-weight: 500;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr {
  transition: background 0.15s;
}
tbody tr:hover { background: rgba(45, 106, 79, 0.08); }

.actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* â”€â”€â”€ Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dash-body { position: relative; }

.dash-app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  align-items: start;
  transition: grid-template-columns 0.2s ease;
}

.dash-app.sidebar-collapsed {
  grid-template-columns: 0 1fr;
}

.dash-sidebar {
  background: var(--brand-gradient);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 0 0 20px;
  flex-shrink: 0;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-right: var(--ios-border);
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 30;
}

.dash-app.sidebar-collapsed .dash-sidebar {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.dash-sidebar-toggle,
.dash-sidebar-restore {
  width: 44px;
  height: 34px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.13);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.dash-sidebar-toggle {
  position: absolute;
  top: 16px;
  right: 12px;
}

.dash-sidebar-toggle span,
.dash-sidebar-restore span {
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
}

.dash-sidebar-toggle span::before,
.dash-sidebar-restore span::before {
  content: "";
  position: absolute;
  inset: 3px 2px 3px 0;
  border-left: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  transform: rotate(45deg);
}

.dash-sidebar-toggle span::after,
.dash-sidebar-restore span::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 2px;
  top: 8px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.dash-sidebar-restore {
  display: none;
  flex: 0 0 auto;
  background: var(--brand-mid);
  border-color: #fff;
  color: #fff;
}

.dash-sidebar-restore span::before {
  inset: 3px 0 3px 2px;
  border-left: 0;
  border-bottom: 0;
  border-right: 5px solid currentColor;
  border-top: 5px solid currentColor;
}

.dash-app.sidebar-collapsed .dash-sidebar-restore {
  display: inline-flex;
}

.dash-sidebar-toggle:hover,
.dash-sidebar-restore:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* Logo area */
.dash-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 18px 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
}
.dash-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  flex-shrink: 0;
}
.dash-logo span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* User block */
.dash-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin: 0 10px 6px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
}
.dash-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dash-user-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-user-role {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Nav menu */
.dash-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 10px;
}
.dash-nav-group {
  margin: 0;
  border-radius: var(--ios-radius);
}
.dash-nav-group summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--ios-radius);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  user-select: none;
}
.dash-nav-group summary::-webkit-details-marker { display: none; }
.dash-nav-group summary::after {
  content: "▾";
  margin-left: auto;
  font-size: 12px;
  opacity: 0.8;
}
.dash-nav-group[open] summary,
.dash-nav-group summary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.dash-nav-children {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 4px 12px;
}
.dash-nav-children a {
  display: flex;
  align-items: center;
  padding: 7px 16px 7px 20px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-left: 6px;
}
.dash-nav-children a:hover,
.dash-nav-children a.active {
  background: rgba(255,255,255,0.13);
  color: #fff;
  text-decoration: none;
}
.dash-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--ios-radius);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dash-menu a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  transform: scale(0.98);
}
.dash-menu a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  border-left: 3px solid var(--accent);
  padding-left: 9px;
}

/* Sidebar footer */
.dash-sidebar-foot {
  padding: 12px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}
.dash-sidebar-btn {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.dash-sidebar-btn:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }
.dash-sidebar-link {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.dash-sidebar-link:hover { color: rgba(255,255,255,0.85); }

/* â”€â”€â”€ Main content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dash-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

/* Top bar */
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.dash-search {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 500;
}
.dash-pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--brand-mid);
  text-decoration: none;
  transition: background 0.15s;
}
.dash-pill-btn:hover { background: var(--brand); color: #fff; text-decoration: none; }

/* Page intro */
.page-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  gap: 12px;
  flex-wrap: wrap;
}
.page-intro h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}
.page-intro > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 999px;
  align-self: center;
  white-space: nowrap;
}

/* Content area */
.dash-content {
  padding: 24px 28px;
  flex: 1;
}

/* â”€â”€â”€ Dashboard cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dash-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.dash-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.dash-card.sunset::before  { background: linear-gradient(90deg, #f97316, #ef4444); }
.dash-card.ocean::before   { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.dash-card.mint::before    { background: linear-gradient(90deg, #10b981, #14b8a6); }
.dash-card.violet::before  { background: linear-gradient(90deg, #8b5cf6, #a855f7); }

.dash-card-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}
.dash-card-value {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.dash-card-delta {
  font-size: 13px;
  color: var(--muted);
}

/* â”€â”€â”€ Panels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dash-panels {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}
.dash-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.dash-panel h2 { margin-bottom: 16px; font-size: 16px; }

/* Bar chart */
.dash-bars {
  min-height: 200px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
  align-items: end;
}
.dash-bar-col { display: grid; gap: 4px; justify-items: center; }
.dash-bar-wrap {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: end;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}
.dash-bar {
  width: 100%;
  min-height: 8%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand-mid) 100%);
}
.dash-bar-label { font-size: 11px; color: var(--muted); }
.dash-bar-value { font-size: 11px; color: var(--text-2); font-weight: 700; }

/* Donut */
.dash-donut {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 8px auto 16px;
  position: relative;
}
.dash-donut::after {
  content: '';
  width: 72px; height: 72px;
  border-radius: 50%;
  position: absolute;
  left: 44px; top: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.dash-legend { display: grid; gap: 8px; }
.dash-legend-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
}
.dash-legend-row .dot { width: 12px; height: 12px; border-radius: 999px; }

.dash-status-panel {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.dash-status-panel h2 { margin-top: 0; font-size: 16px; }
.dash-issues { color: var(--text-2); font-size: 14px; }

/* Banner */
.dash-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--ios-radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.dash-banner p { margin: 0; font-size: 14px; color: var(--text-2); }
.dash-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius);
  background: var(--brand-mid);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.dash-banner-btn:hover { background: var(--brand); color: #fff; text-decoration: none; }

.dash-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dash-headline h1 { margin: 0; font-size: 22px; }
.dash-headline span { color: var(--muted); font-size: 14px; }

/* â”€â”€â”€ Auth shell â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.auth-shell {
  min-height: 100vh;
  padding: 28px 24px;
  background: var(--bg);
}
.auth-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  box-shadow: var(--shadow);
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.auth-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--brand);
  padding: 4px;
}
.auth-brand span {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}
.auth-nav { display: flex; gap: 8px; }
.auth-nav a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.15s, color 0.15s;
}
.auth-nav a:hover { background: var(--brand); color: #fff; text-decoration: none; }
.auth-nav a.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.auth-content {
  width: min(1160px, 100%);
  margin: 0 auto;
}
.auth-content .card { border-radius: var(--ios-radius); }

/* â”€â”€â”€ Section header helper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}
.section-head h2 { margin: 0; font-size: 17px; }

/* â”€â”€â”€ AI grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.ai-card.top { border-color: #86efac; box-shadow: 0 4px 16px rgba(22,163,74,.12); }
.ai-rank { font-size: 28px; font-weight: 800; color: var(--brand-mid); line-height: 1; margin-bottom: 8px; }

/* â”€â”€â”€ Reports â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.report-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.report-stat .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.report-stat .value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

/* â”€â”€â”€ Supplier (iOS-style) cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.ios-supplier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s, transform 0.15s;
}
.ios-supplier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ios-supplier-card.risk { border-color: #fca5a5; }
.ios-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ios-card-top h3 { margin: 0; font-size: 16px; color: var(--text); }

/* â”€â”€â”€ Chat â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.chat-module-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  min-height: 74vh;
}
.chat-module-shell.single { grid-template-columns: 1fr; }
.chat-module-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.chat-filter-form { display: grid; gap: 8px; margin-bottom: 10px; }
.chat-supplier-list { display: grid; gap: 6px; margin-top: 10px; }
.chat-supplier-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--text-2);
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  transition: background 0.12s;
}
.chat-supplier-item:hover { background: var(--bg); text-decoration: none; }
.chat-supplier-item.active { background: #ecfdf5; border-color: #86efac; color: var(--brand); }

.presence-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.presence-dot.online  { background: #22c55e; }
.presence-dot.offline { background: #cbd5e1; }

.chat-module-main { display: flex; flex-direction: column; }
.chat-module-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.chat-box {
  max-height: 360px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  padding: 12px;
  background: var(--bg);
}
.chat-full { min-height: 46vh; max-height: 58vh; }
.chat-row { display: flex; margin-bottom: 8px; }
.chat-row.mine   { justify-content: flex-end; }
.chat-row.theirs { justify-content: flex-start; }
.chat-bubble {
  max-width: 78%;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.chat-row.mine .chat-bubble {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.chat-meta { margin-top: 4px; font-size: 11px; color: var(--muted); text-align: right; }
.chat-file a { color: var(--info); font-weight: 600; }

.video-call-panel {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--ios-radius);
  background: var(--surface);
}
.jitsi-frame {
  width: 100%; min-height: 320px;
  border: 0; border-radius: var(--radius);
  background: var(--bg);
}

/* â”€â”€â”€ Misc helpers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.clean { margin: 10px 0 0; padding-left: 18px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* Detail link â€” always opens a new page */
.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-mid);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
  background: var(--success-bg);
  transition: background 0.12s;
}
.detail-link:hover { background: #dcfce7; text-decoration: none; }

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1080px) {
  .dash-panels { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .dash-app { grid-template-columns: 1fr; }
  .dash-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px;
    gap: 8px;
  }
  .dash-logo { padding: 0; border: none; margin: 0; }
  .dash-user  { margin: 0; }
  .dash-menu  { flex-direction: row; flex-wrap: wrap; padding: 0; flex: none; width: 100%; }
  .dash-menu a { padding: 7px 10px; font-size: 13px; }
  .dash-nav-group { width: 100%; }
  .dash-nav-group summary { padding: 7px 10px; font-size: 13px; }
  .dash-nav-children { padding-left: 0; }
  .dash-nav-children a { padding: 6px 10px 6px 16px; margin-left: 0; font-size: 12px; }
  .dash-sidebar-foot { flex-direction: row; padding: 0; border: none; margin: 0; }
  .dash-content { padding: 16px; }
  .page-intro h1 { font-size: 22px; }
  .dash-topbar { padding: 12px 16px; }
  .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .dash-cards { grid-template-columns: repeat(2, 1fr); }
  .auth-top { flex-direction: column; align-items: flex-start; }
  .auth-shell { padding: 16px; }
  .dash-topbar-right { gap: 6px; }
}

@media (max-width: 980px) {
  .chat-module-shell { grid-template-columns: 1fr; }
}

/* â”€â”€â”€ Modern Animated Login â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.login-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.login-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.login-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.login-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-group input::placeholder {
  color: transparent;
}

.input-group label {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group input:not(:placeholder-shown) {
  border-color: rgba(82, 183, 136, 0.6);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -8px;
  left: 16px;
  font-size: 11px;
  color: rgba(82, 183, 136, 0.9);
  background: rgba(15, 23, 42, 0.8);
  padding: 0 6px;
  border-radius: 4px;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.input-group input:focus ~ .input-icon {
  color: rgba(82, 183, 136, 0.8);
}

.login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.login-submit:hover {
  background: linear-gradient(135deg, #40916c 0%, #52b788 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.5);
}

.login-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(45, 106, 79, 0.4);
}

.login-submit svg {
  transition: transform 0.3s ease;
}

.login-submit:hover svg {
  transform: translateX(4px);
}

.login-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #1b4332 0%,
    #2d6a4f 25%,
    #40916c 50%,
    #52b788 75%,
    #1b4332 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0% { transform: translate(0%, 0%) rotate(0deg); background-position: 0% 50%; }
  25% { transform: translate(-25%, -25%) rotate(90deg); background-position: 100% 50%; }
  50% { transform: translate(-50%, 0%) rotate(180deg); background-position: 100% 100%; }
  75% { transform: translate(-25%, -25%) rotate(270deg); background-position: 0% 100%; }
  100% { transform: translate(0%, 0%) rotate(360deg); background-position: 0% 50%; }
}

.login-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--ios-radius);
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 420px;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.login-logo h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.login-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.login-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--surface);
}

.login-form input:focus {
  outline: none;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.login-form input::placeholder {
  color: var(--muted);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}

.login-btn:hover {
  background: var(--brand-mid);
}

.login-btn:active {
  transform: scale(0.98);
}

/* Tab navigation buttons — override default button styles */
.tab-btn {
  background: none !important;
  box-shadow: none !important;
  color: #555 !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 0.95rem;
  padding: 10px 20px;
  cursor: pointer;
  transform: none !important;
}
.tab-btn:hover {
  background: rgba(0,0,0,0.04) !important;
  color: #1a1a2e !important;
  transform: none !important;
}
.tab-btn.active {
  color: #1a1a2e !important;
  font-weight: 700;
  border-bottom: 3px solid #2a7a2a !important;
}

/* Browse store table — keep readable headers */
.store-browse-table thead tr {
  background: #f0f0f0 !important;
}
.store-browse-table th {
  color: #333 !important;
}
