/* ============================================================
   GameHost — Complete Dark Theme for WHMCS Twenty-One
   Design tokens from marketing site (globals.css)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Design tokens ── */
:root {
  --bg:        #0a0a0f;
  --surface:   #12121a;
  --surface2:  #1a1a26;
  --border:    rgba(255,255,255,0.08);
  --text:      rgba(255,255,255,0.87);
  --muted:     rgba(255,255,255,0.45);
  --indigo:    #6366f1;
  --indigo-d:  #4f46e5;
  --blue:      #3b82f6;
  --green:     #4ade80;
  --red:       #f87171;
  --yellow:    #facc15;
  --radius:    12px;
  --radius-btn:8px;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--indigo); text-decoration: none; transition: color .15s; }
a:hover { color: #818cf8; }

h1,h2,h3,h4,h5,h6 { color: #fff; font-weight: 700; line-height: 1.3; }

::selection { background: var(--indigo); color: #fff; }

/* ── Layout helpers ── */
.gh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gh-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
}

.gh-content-full { flex: 1; min-width: 0; }
.gh-content-with-sidebar { flex: 1; min-width: 0; }
.gh-sidebar { width: 260px; flex-shrink: 0; }

/* ── NAVBAR ── */
.gh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.gh-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gh-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff !important;
  text-decoration: none;
  flex-shrink: 0;
}

.gh-logo:hover { color: #fff !important; }

.gh-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.gh-nav-links .nav-item { list-style: none; }
.gh-nav-links .nav-link,
.gh-nav-links a {
  color: rgba(255,255,255,0.65) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem !important;
  border-radius: 6px;
  transition: color .15s, background .15s;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none !important;
}

.gh-nav-links .nav-link:hover,
.gh-nav-links a:hover,
.gh-nav-links .active > a,
.gh-nav-links .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

/* Dropdown */
.gh-nav-links .dropdown-menu {
  background: #13131f !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,.6) !important;
  padding: .5rem !important;
  min-width: 180px;
}

.gh-nav-links .dropdown-item {
  color: rgba(255,255,255,0.7) !important;
  font-size: .875rem;
  border-radius: 6px;
  padding: .5rem .75rem !important;
}

.gh-nav-links .dropdown-item:hover {
  background: rgba(99,102,241,0.15) !important;
  color: #fff !important;
}

.gh-nav-right {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-left: auto;
  flex-shrink: 0;
}

.gh-user-bar { display: flex; align-items: center; gap: .5rem; }

/* ── BUTTONS ── */
.gh-btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: inherit;
  font-weight: 600;
  font-size: .875rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
  border: none;
  white-space: nowrap;
}

.gh-btn-sm  { padding: .45rem 1rem; font-size: .8125rem; }
.gh-btn-md  { padding: .625rem 1.25rem; }
.gh-btn-lg  { padding: .75rem 1.5rem; font-size: 1rem; }

.gh-btn-primary {
  background: var(--indigo);
  color: #fff !important;
}
.gh-btn-primary:hover {
  background: var(--indigo-d);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99,102,241,.35);
}

.gh-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: rgba(255,255,255,0.85) !important;
}
.gh-btn-outline:hover {
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.05);
}

.gh-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.6) !important;
}
.gh-btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  color: #fff !important;
}

.gh-cart-count {
  background: var(--indigo);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 99px;
  padding: 0 5px;
  min-width: 16px;
  text-align: center;
}

.gh-notif-btn { position: relative; }
.gh-notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 6px; height: 6px;
  background: var(--indigo);
  border-radius: 50%;
}

/* ── Hamburger ── */
.gh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.gh-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .25s;
}
.gh-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gh-hamburger--open span:nth-child(2) { opacity: 0; }
.gh-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.gh-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(10,10,15,.98);
}
.gh-mobile-menu--open { display: block; }
.gh-mobile-links .nav-item { list-style: none; }
.gh-mobile-links .nav-link,
.gh-mobile-links a {
  display: block;
  color: rgba(255,255,255,.7) !important;
  font-size: .9375rem;
  padding: .75rem 0 !important;
  border-bottom: 1px solid var(--border);
  text-decoration: none !important;
}
.gh-mobile-links .nav-link:hover,
.gh-mobile-links a:hover { color: #fff !important; }
.gh-mobile-cta { margin-top: 1rem; width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .gh-nav-links { display: none; }
  .gh-nav-right .gh-btn:not(.gh-hamburger) { display: none; }
  .gh-hamburger { display: flex; }
  .gh-nav-right { gap: .25rem; }
}

/* ── Breadcrumb ── */
.gh-breadcrumb-bar {
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
}
.gh-breadcrumb-bar .breadcrumb {
  background: transparent !important;
  margin: 0;
  padding: 0;
  font-size: .8125rem;
}
.gh-breadcrumb-bar .breadcrumb-item a { color: var(--muted) !important; }
.gh-breadcrumb-bar .breadcrumb-item.active { color: var(--muted) !important; }
.gh-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2) !important; }

/* ── Main ── */
#gh-main { background: var(--bg); min-height: 60vh; }

/* ── Cards / Panels ── */
.panel, .card, .well {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  color: var(--text) !important;
}
.panel-heading, .card-header {
  background: var(--surface2) !important;
  border-bottom: 1px solid var(--border) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .02em;
  padding: .875rem 1.25rem !important;
}
.panel-body { padding: 1.25rem !important; }
.panel-footer, .card-footer {
  background: rgba(255,255,255,.02) !important;
  border-top: 1px solid var(--border) !important;
}

/* ── List groups ── */
.list-group-item {
  background: transparent !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
  transition: background .15s;
}
.list-group-item:hover { background: rgba(255,255,255,.03) !important; }
.list-group-item.active {
  background: rgba(99,102,241,.15) !important;
  border-color: rgba(99,102,241,.3) !important;
  color: #a5b4fc !important;
}

/* ── Tables ── */
.table { color: var(--text) !important; }
.table thead th {
  background: var(--surface2) !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--muted) !important;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.table td, .table th { border-color: var(--border) !important; color: var(--text) !important; }
.table-striped tbody tr:nth-of-type(odd) td { background: rgba(255,255,255,.02) !important; }
.table-hover tbody tr:hover td { background: rgba(99,102,241,.05) !important; }

/* ── Forms ── */
.form-control, .custom-select, select {
  background: var(--surface2) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-btn) !important;
  color: var(--text) !important;
  font-family: inherit !important;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .custom-select:focus, select:focus {
  background: var(--surface2) !important;
  border-color: var(--indigo) !important;
  box-shadow: 0 0 0 3px rgba(99,102,241,.15) !important;
  color: #fff !important;
  outline: none !important;
}
.form-control::placeholder { color: var(--muted) !important; }

label { color: var(--muted) !important; font-size: .875rem; margin-bottom: .375rem; display: block; }
.form-text, .help-block { color: var(--muted) !important; font-size: .8125rem; }

.input-group-text, .input-group-addon {
  background: var(--surface2) !important;
  border-color: var(--border) !important;
  color: var(--muted) !important;
}

.has-error .form-control { border-color: var(--red) !important; }
.has-error .control-label, .has-error .help-block { color: #fca5a5 !important; }
.has-success .form-control { border-color: var(--green) !important; }

/* ── Bootstrap buttons → GameHost style ── */
.btn {
  font-family: inherit !important;
  font-weight: 600 !important;
  border-radius: var(--radius-btn) !important;
  transition: all .2s !important;
  font-size: .875rem !important;
}
.btn-primary, .btn-info {
  background: var(--indigo) !important;
  border-color: var(--indigo) !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-info:hover {
  background: var(--indigo-d) !important;
  border-color: var(--indigo-d) !important;
  transform: translateY(-1px);
}
.btn-success {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #fff !important;
}
.btn-danger {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
}
.btn-warning {
  background: rgba(245,158,11,.15) !important;
  border-color: rgba(245,158,11,.3) !important;
  color: #fcd34d !important;
}
.btn-default, .btn-secondary {
  background: var(--surface2) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.btn-default:hover, .btn-secondary:hover {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.2) !important;
}
.btn-link { color: var(--indigo) !important; }
.btn-link:hover { color: #818cf8 !important; }

/* ── Alerts ── */
.alert { border-radius: var(--radius-btn) !important; font-size: .875rem; border: none !important; }
.alert-success { background: rgba(74,222,128,.1) !important; color: #86efac !important; border-left: 3px solid var(--green) !important; }
.alert-danger, .alert-error { background: rgba(248,113,113,.1) !important; color: #fca5a5 !important; border-left: 3px solid var(--red) !important; }
.alert-warning { background: rgba(250,204,21,.1) !important; color: #fde047 !important; border-left: 3px solid var(--yellow) !important; }
.alert-info { background: rgba(99,102,241,.1) !important; color: #a5b4fc !important; border-left: 3px solid var(--indigo) !important; }

/* ── Badges ── */
.badge, .label {
  font-size: .7rem !important;
  font-weight: 600 !important;
  border-radius: 99px !important;
  padding: 2px 8px !important;
}
.badge-primary, .label-primary { background: rgba(99,102,241,.2) !important; color: #a5b4fc !important; }
.badge-success, .label-success { background: rgba(74,222,128,.15) !important; color: #86efac !important; }
.badge-danger, .label-danger { background: rgba(248,113,113,.15) !important; color: #fca5a5 !important; }
.badge-warning, .label-warning { background: rgba(250,204,21,.15) !important; color: #fde047 !important; }
.badge-info { background: rgba(99,102,241,.2) !important; color: #a5b4fc !important; }

/* ── Modals ── */
.modal-content {
  background: #13131f !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  color: var(--text) !important;
  box-shadow: 0 25px 60px rgba(0,0,0,.7) !important;
}
.modal-header { border-bottom: 1px solid var(--border) !important; padding: 1.25rem !important; }
.modal-footer { border-top: 1px solid var(--border) !important; padding: 1rem 1.25rem !important; }
.modal-title { color: #fff !important; font-weight: 700 !important; }
.close { color: var(--muted) !important; text-shadow: none !important; opacity: 1 !important; font-size: 1.5rem !important; background: none; border: none; cursor: pointer; }
.close:hover { color: #fff !important; }
.modal-backdrop { background: rgba(0,0,0,.75) !important; }

/* ── Pagination ── */
.page-link {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
  border-radius: 6px !important;
}
.page-link:hover { background: rgba(99,102,241,.12) !important; color: #fff !important; border-color: var(--indigo) !important; }
.page-item.active .page-link { background: var(--indigo) !important; border-color: var(--indigo) !important; color: #fff !important; }
.page-item.disabled .page-link { color: var(--muted) !important; opacity: .5; }

/* ── Tabs ── */
.nav-tabs { border-bottom: 1px solid var(--border) !important; }
.nav-tabs .nav-link { color: var(--muted) !important; border: none !important; border-bottom: 2px solid transparent !important; border-radius: 0 !important; padding: .625rem 1rem !important; font-size: .875rem; font-weight: 500; }
.nav-tabs .nav-link:hover { color: #fff !important; border-bottom-color: rgba(99,102,241,.4) !important; }
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link { color: #fff !important; border-bottom-color: var(--indigo) !important; background: transparent !important; }
.tab-content { padding: 1.5rem 0; }

/* ── Sidebar ── */
.gh-sidebar .panel { margin-bottom: 1rem; }
.gh-sidebar .list-group-item { font-size: .875rem; padding: .625rem 1rem !important; }

/* ── Progress ── */
.progress { background: rgba(255,255,255,.08) !important; border-radius: 99px; height: 6px !important; }
.progress-bar { background: var(--indigo) !important; border-radius: 99px; }

/* ── Status labels ── */
.status-active, .text-success-status { color: #86efac !important; }
.status-pending, .text-warning-status { color: #fde047 !important; }
.status-suspended, .text-danger-status { color: #fca5a5 !important; }

/* ── FOOTER ── */
.gh-footer {
  background: #0d0d14;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
  margin-top: 4rem;
}

.gh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  .gh-footer-grid { grid-template-columns: 1fr 1fr; }
  .gh-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .gh-footer-grid { grid-template-columns: 1fr; }
}

.gh-footer-brand .gh-logo { margin-bottom: 1rem; }
.gh-footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 260px; }

.gh-footer-heading {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}

.gh-footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.gh-footer-links a { font-size: .875rem; color: rgba(255,255,255,.55) !important; transition: color .15s; }
.gh-footer-links a:hover { color: #fff !important; }

.gh-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.gh-footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.3); margin: 0; }

.gh-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--muted) !important;
  font-size: .8125rem;
  padding: .375rem .75rem;
  cursor: pointer;
  transition: border-color .15s;
}
.gh-lang-btn:hover { border-color: rgba(255,255,255,.2); color: #fff !important; }

/* ── Misc utils ── */
.text-muted, .text-light-muted { color: var(--muted) !important; }
.text-primary { color: var(--indigo) !important; }
.text-success { color: var(--green) !important; }
.text-danger  { color: var(--red) !important; }
.text-warning { color: var(--yellow) !important; }
.bg-light     { background: var(--surface) !important; }
.bg-white     { background: var(--surface) !important; }
.border       { border-color: var(--border) !important; }
hr            { border-color: var(--border) !important; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,.6); }

/* ── Autofill fix ── */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--surface2) inset !important;
  -webkit-text-fill-color: var(--text) !important;
}

/* ── Return to admin button ── */
.btn-return-to-admin {
  background: rgba(99,102,241,.15) !important;
  border: 1px solid rgba(99,102,241,.3) !important;
  color: #a5b4fc !important;
  border-radius: var(--radius-btn) !important;
  padding: .5rem 1rem !important;
  font-size: .8125rem !important;
  font-weight: 600 !important;
}

/* ── WHMCS topbar (logged in) ── */
.btn-active-client {
  background: rgba(99,102,241,.12) !important;
  border: 1px solid rgba(99,102,241,.25) !important;
  color: #a5b4fc !important;
  border-radius: var(--radius-btn) !important;
  font-size: .8125rem !important;
}

/* ── ============================================================
   CLIENT AREA DASHBOARD
   ============================================================ */

/* Stats tiles (Services / Domains / Tickets / Invoices) */
.tiles { margin-bottom: 24px !important; }

.tiles .tile {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 16px !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  color: var(--text) !important;
  transition: background .2s !important;
  position: relative !important;
  overflow: hidden !important;
}

.tiles .tile:hover { background: var(--surface2) !important; }

.tiles .row.no-gutters .col-6:first-child .tile { border-radius: var(--radius) 0 0 var(--radius) !important; }
.tiles .row.no-gutters .col-6:last-child .tile,
.tiles .row.no-gutters .col-xl-3:last-child .tile { border-radius: 0 var(--radius) var(--radius) 0 !important; }

.tiles .tile i {
  font-size: 1.6rem !important;
  margin-bottom: 8px !important;
  color: var(--muted) !important;
}

.tiles .tile .stat {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1 !important;
}

.tiles .tile .title {
  font-size: .75rem !important;
  color: var(--muted) !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  margin-top: 4px !important;
}

/* Colored accent bar at bottom */
.tiles .tile .highlight {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
}
.tiles .tile .highlight.bg-color-blue   { background: #3b82f6 !important; }
.tiles .tile .highlight.bg-color-green  { background: #4ade80 !important; }
.tiles .tile .highlight.bg-color-red    { background: #f87171 !important; }
.tiles .tile .highlight.bg-color-gold   { background: #facc15 !important; }

/* Client home cards */
.client-home-cards .card,
.client-home-cards .panel {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 20px !important;
}

.client-home-cards .card-header,
.client-home-cards .panel-heading {
  background: var(--surface2) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 14px 20px !important;
}

.client-home-cards .card-header h3,
.client-home-cards .card-title {
  color: #fff !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.client-home-cards .card-header a,
.client-home-cards .card-header .btn-link {
  color: var(--indigo) !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.client-home-cards .card-body,
.client-home-cards .panel-body {
  background: transparent !important;
  padding: 16px 20px !important;
  color: var(--muted) !important;
}

/* "Place an order" link */
.client-home-cards .card-body a,
.client-home-cards .panel-body a {
  color: var(--indigo) !important;
}

/* ── WHMCS sidebar (Your Info / Contacts / Shortcuts) ── */
.gh-sidebar .panel,
.gh-sidebar .card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 16px !important;
}

.gh-sidebar .panel-heading,
.gh-sidebar .card-header {
  background: var(--surface2) !important;
  border-bottom: 1px solid var(--border) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.gh-sidebar .panel-body,
.gh-sidebar .card-body {
  background: transparent !important;
  padding: 12px 16px !important;
}

/* Sidebar Update button → indigo */
.gh-sidebar .btn,
.gh-sidebar .btn-success,
.gh-sidebar .btn-primary {
  background: var(--indigo) !important;
  border-color: var(--indigo) !important;
  color: #fff !important;
  border-radius: var(--radius-btn) !important;
  font-size: .8rem !important;
  width: 100% !important;
  margin-bottom: 6px !important;
}

/* Sidebar shortcut links */
.gh-sidebar .list-group-item,
.gh-sidebar a.list-group-item {
  background: transparent !important;
  border-color: var(--border) !important;
  color: var(--muted) !important;
  padding: 8px 0 !important;
  transition: color .15s !important;
}
.gh-sidebar .list-group-item:hover { color: #fff !important; }

/* ── card-accent borders ── */
.card-accent-blue   { border-top: 2px solid #3b82f6 !important; }
.card-accent-red    { border-top: 2px solid #f87171 !important; }
.card-accent-green  { border-top: 2px solid #4ade80 !important; }
.card-accent-gold   { border-top: 2px solid #facc15 !important; }
.card-accent-purple { border-top: 2px solid var(--indigo) !important; }

/* ── Recent News / Support items ── */
.news-item, .support-ticket-row {
  border-bottom: 1px solid var(--border) !important;
  padding: 10px 0 !important;
  color: var(--text) !important;
}

/* ── Domain search widget ── */
.domain-search-wrap input,
.register-domain-widget input {
  background: var(--surface2) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 8px 0 0 8px !important;
}
.domain-search-wrap .btn-success,
.register-domain-widget .btn {
  background: var(--indigo) !important;
  border-color: var(--indigo) !important;
  color: #fff !important;
}

/* ── Table in client area ── */
.table-striped tbody tr:nth-of-type(odd) td { background: rgba(255,255,255,.025) !important; }
.table-hover tbody tr:hover td { background: rgba(99,102,241,.06) !important; }

/* All green buttons → indigo */
.btn-success {
  background: var(--indigo) !important;
  border-color: var(--indigo) !important;
  color: #fff !important;
}
