/* ==========================================================
   HostingPro - Domains (UX style)
   File: hp-domains.css
   Escopo TOTAL: #hpDomPage (não vaza pro resto do WHMCS)
   Compatível com o clientareadomains.tpl atual (hp-dom-page)
   ========================================================== */

#hpDomPage,
#hpDomPage * {
  box-sizing: border-box;
}

#hpDomPage img {
  max-width: 100%;
  height: auto;
  display: block;
}

#hpDomPage a {
  text-decoration: none;
}

#hpDomPage button,
#hpDomPage input,
#hpDomPage select {
  font-family: inherit;
}

#hpDomPage {
  padding: 24px;
}

/* =========================
   Header
   ========================= */
#hpDomPage .hp-dom-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

#hpDomPage .hp-dom-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

#hpDomPage .hp-dom-sub {
  margin-top: 6px;
  color: #6b7280;
  font-weight: 600;
}

#hpDomPage .hp-dom-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#hpDomPage .hp-dom-iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #4b5563;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

#hpDomPage .hp-dom-iconbtn:hover {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #111827;
  transform: translateY(-1px);
}

#hpDomPage .hp-dom-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
  position: absolute;
  top: 10px;
  right: 10px;
}

#hpDomPage .hp-dom-primarybtn {
  border: 0;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s, filter .2s;
}

#hpDomPage .hp-dom-primarybtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
  filter: brightness(.99);
}

/* =========================
   Stats (4 cards)
   ========================= */
#hpDomPage .hp-dom-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 18px;
}

#hpDomPage .hp-dom-stat {
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

#hpDomPage .hp-dom-stat::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  transition: .5s;
}

#hpDomPage .hp-dom-stat:hover::before {
  top: -40%;
  right: -40%;
}

#hpDomPage .hp-dom-stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

#hpDomPage .hp-dom-stat-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hpDomPage .hp-dom-pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-weight: 800;
}

#hpDomPage .hp-dom-stat-big {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}

#hpDomPage .hp-dom-stat-label {
  margin-top: 8px;
  font-weight: 700;
  opacity: .92;
  position: relative;
  z-index: 1;
}

#hpDomPage .hp-dom-stat-hint {
  margin-top: 10px;
  font-size: 12px;
  opacity: .9;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

/* Gradientes */
#hpDomPage .hp-g-green { background: linear-gradient(135deg,#43e97b 0%,#38f9d7 100%); }
#hpDomPage .hp-g-blue  { background: linear-gradient(135deg,#4facfe 0%,#00f2fe 100%); }
#hpDomPage .hp-g-orange{ background: linear-gradient(135deg,#fa709a 0%,#fee140 100%); }
#hpDomPage .hp-g-red   { background: linear-gradient(135deg,#f093fb 0%,#f5576c 100%); }

/* =========================
   Controls / filtros
   ========================= */
#hpDomPage .hp-dom-controls {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding: 16px;
  margin-bottom: 14px;
}

#hpDomPage .hp-dom-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#hpDomPage .hp-dom-controls-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 260px;
  flex-wrap: wrap;
}

#hpDomPage .hp-dom-controls-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#hpDomPage .hp-dom-search {
  position: relative;
  min-width: 260px;
  flex: 1;
  max-width: 420px;
}

#hpDomPage .hp-dom-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

#hpDomPage .hp-dom-search input {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  outline: none;
  font-weight: 700;
  color: #111827;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

#hpDomPage .hp-dom-search input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102,126,234,.15);
}

#hpDomPage select#hpDomStatus,
#hpDomPage select#hpDomTld {
  padding: 12px 12px;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  outline: none;
  font-weight: 800;
  color: #374151;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

#hpDomPage select#hpDomStatus:focus,
#hpDomPage select#hpDomTld:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102,126,234,.15);
}

#hpDomPage .hp-dom-softbtn {
  padding: 12px 14px;
  border-radius: 14px;
  border: 0;
  background: #f3f4f6;
  font-weight: 700;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

#hpDomPage .hp-dom-softbtn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* =========================
   Table container
   ========================= */
#hpDomPage .hp-dom-table-wrap {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
}

#hpDomPage .hp-dom-table-scroll {
  overflow-x: auto;
}

#hpDomPage table.hp-dom-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 980px;
}

/* Thead */
#hpDomPage table.hp-dom-table thead th {
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
  padding: 14px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

/* Colunas específicas */
#hpDomPage .hp-dom-col-check {
  width: 44px;
}

#hpDomPage .hp-dom-col-actions {
  width: 160px;
  text-align: right;
}

/* Tbody cells */
#hpDomPage table.hp-dom-table tbody td {
  padding: 16px 14px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: middle;
  color: #111827;
  background: transparent;
}

/* Row hover */
#hpDomPage tr.hp-dom-row {
  transition: background .2s;
}

#hpDomPage tr.hp-dom-row:hover {
  background: #f9fafb;
}

/* Domain cell */
#hpDomPage .hp-dom-domaincell {
  display: flex;
  align-items: center;
  gap: 12px;
}

#hpDomPage .hp-dom-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

#hpDomPage .hp-av-green { background: linear-gradient(135deg,#43e97b 0%,#38f9d7 100%); }

#hpDomPage .hp-dom-domain {
  font-weight: 700;
  color: #111827;
}

#hpDomPage .hp-dom-subtext {
  margin-top: 2px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
}

/* Badge */
#hpDomPage .hp-dom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

#hpDomPage .hp-dom-badge .hp-dom-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  display: inline-block;
}

/* Badge colors */
#hpDomPage .hp-b-green  { background: #dcfce7; color: #166534; }
#hpDomPage .hp-b-yellow { background: #fef9c3; color: #854d0e; }
#hpDomPage .hp-b-blue   { background: #dbeafe; color: #1e40af; }
#hpDomPage .hp-b-gray   { background: #e5e7eb; color: #374151; }

/* Datas */
#hpDomPage .hp-dom-date {
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

#hpDomPage .hp-dom-rel {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 800;
  color: #6b7280;
  white-space: nowrap;
}

#hpDomPage .hp-rel-ok   { color: #16a34a; }
#hpDomPage .hp-rel-warn { color: #ea580c; }
#hpDomPage .hp-rel-info { color: #2563eb; }

/* Switch visual */
#hpDomPage .hp-switch {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

#hpDomPage .hp-switch::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

#hpDomPage .hp-switch.is-on {
  background: #667eea;
}

#hpDomPage .hp-switch.is-on::after {
  left: 22px;
}

#hpDomPage .hp-switch.is-off {
  opacity: .55;
}

/* Proteções */
#hpDomPage .hp-dom-prot {
  display: flex;
  align-items: center;
  gap: 8px;
}

#hpDomPage .hp-dom-prot span {
  width: 26px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

#hpDomPage .hp-prot-blue  { background: #dbeafe; color: #1e40af; }
#hpDomPage .hp-prot-green { background: #dcfce7; color: #166534; }
#hpDomPage .hp-prot-gray  { background: #e5e7eb; color: #6b7280; }

/* Ações */
#hpDomPage .hp-dom-actions-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}

#hpDomPage .hp-actbtn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 0;
  background: #f3f4f6;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}

#hpDomPage .hp-actbtn:hover {
  background: #e5e7eb;
  color: #111827;
  transform: translateY(-1px);
}

#hpDomPage .hp-actbtn.danger:hover {
  background: #fee2e2;
  color: #b91c1c;
}

#hpDomPage .hp-actbtn.is-disabled {
  opacity: .5;
  pointer-events: none;
  transform: none;
}

/* =========================
   Footer / Paginação
   ========================= */
#hpDomPage .hp-dom-footerbar {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid #eef2f7;
  background: #f9fafb;
}

#hpDomPage .hp-dom-footer-left,
#hpDomPage .hp-dom-footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#hpDomPage .hp-dom-footer-text {
  font-weight: 800;
  color: #374151;
}

#hpDomPage .hp-dom-perpage {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 800;
  color: #374151;
}

#hpDomPage .hp-dom-pagebtn {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

#hpDomPage .hp-dom-pagebtn:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

#hpDomPage .hp-dom-pagebtn.is-active {
  border: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

#hpDomPage .hp-dom-pagebtn:disabled,
#hpDomPage .hp-dom-pagebtn.is-disabled {
  opacity: .5;
  pointer-events: none;
  transform: none;
}

/* =========================
   Grid inferior (2 colunas)
   ========================= */
#hpDomPage .hp-dom-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

#hpDomPage .hp-dom-panel {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

#hpDomPage .hp-dom-cardbox {
  padding: 16px;
}

#hpDomPage .hp-dom-cardtitle {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

#hpDomPage .hp-dom-bulklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#hpDomPage .hp-dom-listbtn {
  width: 100%;
  border: 0;
  background: #f3f4f6;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 500;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

#hpDomPage .hp-dom-listbtn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

#hpDomPage .hp-dom-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 0;
}

#hpDomPage .hp-dom-muted {
  color: #6b7280;
  font-weight: 700;
}

/* Serviços */
#hpDomPage .hp-dom-svc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#hpDomPage .hp-dom-svc-item {
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
}

#hpDomPage .hp-dom-svc-item:hover {
  border-color: #e5e7eb;
  transform: translateY(-1px);
}

#hpDomPage .hp-dom-svc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

#hpDomPage .hp-dom-svc-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  flex: 0 0 auto;
}

#hpDomPage .hp-svc-blue   { background: linear-gradient(135deg,#4facfe 0%,#00f2fe 100%); }
#hpDomPage .hp-svc-green  { background: linear-gradient(135deg,#43e97b 0%,#38f9d7 100%); }
#hpDomPage .hp-svc-orange { background: linear-gradient(135deg,#fa709a 0%,#fee140 100%); }
#hpDomPage .hp-svc-purple { background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); }
#hpDomPage .hp-svc-indigo { background: linear-gradient(135deg,#6366f1 0%,#8b5cf6 100%); }
#hpDomPage .hp-svc-red    { background: linear-gradient(135deg,#f43f5e 0%,#fb923c 100%); }
#hpDomPage .hp-svc-gray   { background: linear-gradient(135deg,#64748b 0%,#94a3b8 100%); }
#hpDomPage .hp-svc-teal   { background: linear-gradient(135deg,#14b8a6 0%,#5eead4 100%); }

#hpDomPage .hp-dom-svc-meta {
  flex: 1 1 auto;
  min-width: 0;
}

#hpDomPage .hp-dom-svc-title {
  font-weight: 700;
  color: #111827;
}

#hpDomPage .hp-dom-svc-sub {
  margin-top: 2px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
}

#hpDomPage .hp-dom-svc-price {
  font-weight: 700;
  color: #667eea;
  white-space: nowrap;
}

#hpDomPage .hp-dom-svc-text {
  color: #6b7280;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
}

#hpDomPage .hp-dom-svc-btn {
  width: 100%;
  border: 0;
  background: rgba(102,126,234,.12);
  color: #667eea;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

#hpDomPage .hp-dom-svc-btn:hover {
  background: rgba(102,126,234,.18);
  transform: translateY(-1px);
}

/* =========================
   Banner renovações
   ========================= */
#hpDomPage .hp-dom-banner {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(90deg, #f97316 0%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
}

#hpDomPage .hp-dom-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

#hpDomPage .hp-dom-banner-ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hpDomPage .hp-dom-banner-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

#hpDomPage .hp-dom-banner-sub {
  margin-top: 4px;
  opacity: .92;
  font-weight: 500;
}

#hpDomPage .hp-dom-banner-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#hpDomPage .hp-dom-banner-btn1 {
  border: 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  color: #ea580c;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

#hpDomPage .hp-dom-banner-btn1:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

#hpDomPage .hp-dom-banner-btn2 {
  border: 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

#hpDomPage .hp-dom-banner-btn2:hover {
  background: rgba(255,255,255,.30);
  transform: translateY(-1px);
}

/* =========================
   Tips (3 colunas)
   ========================= */
#hpDomPage .hp-dom-tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

#hpDomPage .hp-tip {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  padding: 16px;
  transition: transform .2s, box-shadow .2s;
}

#hpDomPage .hp-tip:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
}

#hpDomPage .hp-tip-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

#hpDomPage .hp-tip-title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

#hpDomPage .hp-tip-text {
  color: #6b7280;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}

#hpDomPage .hp-tip-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #667eea;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

#hpDomPage .hp-tip-link:hover {
  text-decoration: underline;
}

/* =========================
   Util
   ========================= */
#hpDomPage .hp-hidden {
  display: none !important;
}

/* =========================
   Responsivo
   ========================= */
@media (max-width: 1100px) {
  #hpDomPage .hp-dom-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #hpDomPage .hp-dom-tips {
    grid-template-columns: 1fr;
  }
  #hpDomPage .hp-dom-grid2 {
    grid-template-columns: 1fr;
  }
  #hpDomPage .hp-dom-title {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  #hpDomPage {
    padding: 16px;
  }
  #hpDomPage .hp-dom-actions {
    width: 100%;
    justify-content: flex-end;
  }
  #hpDomPage .hp-dom-primarybtn {
    padding: 11px 14px;
  }
  #hpDomPage table.hp-dom-table {
    min-width: 920px;
  }
}

/* ==================================
   TYPO TUNING (Domains)
   - alivia o “tudo bold”
================================== */

/* Texto base dentro do #hpDomPage */
#hpDomPage{
  font-weight: 400;
}

/* Subtítulos / descrições / textos de apoio */
#hpDomPage .hp-dom-sub,
#hpDomPage .hp-dom-muted,
#hpDomPage .hp-dom-svc-text,
#hpDomPage .hp-tip-text{
  font-weight: 500;
}

/* Micro-texto abaixo de títulos (domínio, etc.) */
#hpDomPage .hp-dom-subtext,
#hpDomPage .hp-dom-svc-sub{
  font-weight: 500;
}

/* Tabela: deixa o corpo mais “normal” */
#hpDomPage table.hp-dom-table tbody td{
  font-weight: 500;
}

/* Datas podem continuar destacadas, mas menos “pesadas” */
#hpDomPage .hp-dom-date{ font-weight: 800; }
#hpDomPage .hp-dom-rel{ font-weight: 600; }

/* Inputs e selects: não precisam 700/800 */
#hpDomPage .hp-dom-search input{
  font-weight: 600;
}
#hpDomPage select#hpDomStatus,
#hpDomPage select#hpDomTld{
  font-weight: 600;
}

/* Botões secundários um pouco menos pesados */
#hpDomPage .hp-dom-softbtn{
  font-weight: 800;
}

/* Mantém títulos e números fortes (não mexe neles) */
/* .hp-dom-title, .hp-dom-stat-big, .hp-dom-domain, badges continuam como estão */

/* ==================================
   MOBILE RESPONSIVE (Domains)
================================== */
@media (max-width: 860px){
  /* Remove min-width to prevent horizontal scroll */
  #hpDomPage table.hp-dom-table{
    min-width:0;
  }

  /* Hide table header */
  #hpDomPage table.hp-dom-table thead{ display:none; }

  /* Stack cells vertically */
  #hpDomPage table.hp-dom-table,
  #hpDomPage table.hp-dom-table tbody,
  #hpDomPage table.hp-dom-table tr,
  #hpDomPage table.hp-dom-table td{ display:block; width:100%; }

  #hpDomPage table.hp-dom-table tbody tr{
    padding:14px;
    border-bottom:1px solid #eef2f7;
  }
  #hpDomPage table.hp-dom-table tbody td{
    padding:4px 0;
    border-bottom:none;
  }
  #hpDomPage table.hp-dom-table tbody td:before{
    content:attr(data-label);
    font-size:11px;
    font-weight:700;
    color:#6b7280;
    text-transform:uppercase;
    display:block;
    margin-bottom:2px;
  }

  /* Hide checkbox on mobile */
  .hp-dom-check{ display:none !important; }

  /* Actions row */
  #hpDomPage .hp-dom-col-actions{
    padding-top:8px !important;
  }
}