/* ARZHost shared header, footer, and global element styles */



/* ARZHost Global Header & Topbar Styles - Exact Match to Live Site */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Urbanist:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* Prevent horizontal layout shifts and width jumps when navigating between short and long pages */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

.arz-header-wrapper,
.arz-header-wrapper *,
.arz-header-wrapper *::before,
.arz-header-wrapper *::after {
  box-sizing: border-box;
}

.arz-header-wrapper {
  background-color: #213083; /* Seamlessly joins with the #213083 hero section */
  width: 100%;
  position: relative;
  z-index: 1000;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

/* --- Topbar Sub-header --- */
.arz-topbar {
  background: linear-gradient(269.94deg, #011788 10.47%, #00126B 99.97%);
  height: 35px;
  min-height: 35px;
  max-height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  font-family: "Mulish", sans-serif;
  border-bottom: 1.5px solid #FF0066; /* Vibrant thin pink/red separator line */
}
.arz-topbar-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.arz-topbar-left {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}
.arz-topbar-left a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.arz-topbar-left a:hover {
  opacity: 0.85;
}
.arz-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 1;
}
.arz-topbar-right a {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  line-height: 1;
}
.arz-topbar-right a:hover {
  color: #5673FF;
}
.arz-topbar-right a + a::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: rgba(255, 255, 255, 0.4);
}

/* --- Main White Floating Header Banner (Zero Top Gap with Red Line) --- */
.arz-main-header-outer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 8px 24px; /* 0px top padding eliminates the gap completely */
  height: 62px;
  box-sizing: border-box;
}
.arz-main-header {
  background: #ffffff;
  border-radius: 0 0 8px 8px; /* Seamlessly touches red line at top, rounded corners at bottom */
  padding: 0 20px;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.arz-logo-wrapper {
  display: flex;
  align-items: center;
  width: 125px;
  height: 32px;
  flex-shrink: 0;
}
.arz-logo-wrapper a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}
.arz-logo-wrapper img {
  width: 125px; /* Exact ARZHost brand proportions */
  height: 32px;
  object-fit: contain;
  display: block;
}

/* Navigation Menu */
.arz-nav-wrapper {
  margin-left: auto;
  margin-right: 18px;
}
.arz-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.arz-nav-item {
  position: relative;
  list-style: none;
}
.arz-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  height: 34px;
  color: #001042;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  border-radius: 4px;
}
.arz-nav-link:hover,
.arz-nav-item:hover > .arz-nav-link {
  color: #1C40F2;
}
.arz-nav-item.current-menu-item > .arz-nav-link {
  color: #1C40F2;
  font-weight: 600;
}

/* Real Clean Dropdown Arrow (CSS Triangle Chevron - 100% Reliable, NO missing box/font) */
.arz-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid #001042;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.25s ease, border-top-color 0.25s ease;
}
.arz-nav-item:hover .arz-arrow {
  border-top-color: #1C40F2;
  transform: rotate(180deg);
}

/* Submenu Dropdown */
.arz-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 16, 66, 0.12);
  border: 1px solid #eef2f6;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.arz-nav-item:hover > .arz-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.arz-submenu-item {
  list-style: none;
}
.arz-submenu-link {
  display: block;
  padding: 8px 16px;
  color: #001042;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.arz-submenu-link:hover {
  background: #f8fafc;
  color: #1C40F2;
  padding-left: 20px;
}

/* Login/Signup Button */
.arz-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.arz-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 5px;
  padding: 0 18px;
  height: 36px;
  line-height: 36px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(95.45deg, #0082F8 0.64%, #1C40F2 98.23%);
  box-shadow: 0 3px 10px rgba(28, 64, 242, 0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
}
.arz-btn-login:hover {
  background: linear-gradient(95.45deg, #1C40F2 0.64%, #0082F8 98.23%);
  color: #ffffff;
  box-shadow: 0 5px 14px rgba(28, 64, 242, 0.35);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.arz-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #001042;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

/* Responsive Navigation */
@media (max-width: 1080px) {
  .arz-nav-wrapper {
    display: none;
  }
  .arz-nav-wrapper.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 14px;
    margin: 0;
  }
  .arz-nav-wrapper.active .arz-nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .arz-nav-wrapper.active .arz-nav-item {
    width: 100%;
  }
  .arz-nav-wrapper.active .arz-nav-link {
    width: 100%;
    padding: 8px 10px;
  }
  .arz-nav-wrapper.active .arz-submenu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 14px;
    display: none;
  }
  .arz-nav-wrapper.active .arz-nav-item:hover .arz-submenu {
    display: block;
  }
  .arz-mobile-toggle {
    display: block;
  }
}
@media (max-width: 576px) {
  .arz-topbar-left {
    font-size: 11.5px;
  }
  .arz-topbar-right a {
    font-size: 11.5px;
  }
  .arz-btn-login {
    display: none;
  }
}

/* ==========================================================================
   ARZHost Global Footer Styles - 100% Pixel-Perfect Match to Live Site
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Urbanist:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

.arz-footer-section {
  background-color: #213083;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  width: 100%;
  padding: 60px 0 25px 0;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.arz-footer-section *,
.arz-footer-section *::before,
.arz-footer-section *::after {
  box-sizing: border-box;
}

.arz-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* 4 Column Top Grid matching Elementor widths: 35.9% | 15.3% | 17% | 31.8% */
.arz-footer-grid {
  display: grid;
  grid-template-columns: 35.9% 15.3% 17% 31.8%;
  gap: 20px;
  margin-bottom: 35px;
}

.arz-footer-col {
  display: flex;
  flex-direction: column;
}

.arz-footer-col:first-child,
.arz-footer-col-1 {
  padding-right: 40px;
}

/* Logo & About in Column 1 */
.arz-footer-logo {
  margin-bottom: 16px;
}

.arz-footer-logo a {
  display: inline-block;
}

.arz-footer-logo img {
  width: 175px;
  max-width: 100%;
  height: auto;
  display: block;
}

.arz-footer-about {
  font-size: 14.5px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 22px 0;
  font-weight: 400;
}

/* Headings in Columns */
.arz-footer-title {
  font-family: "Urbanist", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 8px 0;
}

/* Gradient Underline Divider */
.arz-footer-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(95deg, #0082F8 0.64%, #1C40F2 98%);
  margin: 0 0 18px 0;
  border-radius: 2px;
}

/* Social Icons in Column 1 (Sleek 32px circular buttons matching live site) */
.arz-social-title {
  font-family: "Urbanist", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 14px 0;
}

.arz-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arz-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(37, 50, 111, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.arz-social-icon svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.arz-social-icon:hover {
  background-color: #392396;
  transform: translateY(-2px);
}

/* Navigation Links in Columns 2 & 3 */
.arz-footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.arz-footer-nav li {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}

.arz-footer-nav a {
  color: #ffffff;
  font-size: 14.5px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  transition: all 0.25s ease;
  display: inline-block;
}

.arz-footer-nav a:hover {
  color: #C4D8FD;
  padding-left: 4px;
}

/* Newsletter Box in Column 4 */
.arz-newsletter-form {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #E7E7E7;
  border-radius: 6px;
  padding: 5px 6px;
  margin: 10px 0 22px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.arz-newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  color: #000000;
  font-family: inherit;
}

.arz-newsletter-input::placeholder {
  color: transparent;
}

.arz-newsletter-btn {
  background-color: #5041BC;
  background: linear-gradient(96.49deg, #5041BC 0%, #5041BC 102.71%);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 11px 22px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.arz-newsletter-btn:hover {
  background-color: #FF8057;
  background: linear-gradient(96deg, #FF8057 0%, #FF8057 102.71%);
}

/* Address Widget in Column 4 (Prominent, bold, 16px text with 58px icon) */
.arz-address-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.arz-address-icon img {
  width: 58px;
  height: auto;
  display: block;
}

.arz-address-text {
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}

/* Horizontal Thin Line */
.arz-footer-line {
  border: none;
  border-top: 1px solid #C4D8FD;
  opacity: 0.35;
  margin: 20px 0 24px 0;
}

/* Bottom Bar: Copyright & Payment Methods (Single Row On Desktop) */
.arz-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 16px;
}

.arz-copyright {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

.arz-payments {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.arz-payments-label {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Compact exact size matching original screenshot (height ~18px) */
.arz-payments img {
  height: 18px;
  max-height: 18px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* Privacy Links Submenu at Very Bottom */
.arz-privacy-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.arz-privacy-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.arz-privacy-nav a {
  color: #FFFFFF;
  font-size: 13.5px;
  font-family: "Mulish", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.arz-privacy-nav a:hover {
  color: #C4D8FD;
  text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .arz-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .arz-footer-col:first-child,
  .arz-footer-col-1 {
    padding-right: 0;
  }
  .arz-footer-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .arz-footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .arz-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .arz-payments {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
  .arz-privacy-nav {
    gap: 14px;
  }
}

/* ==========================================================================
   ARZHost Domain Checker Suite - Global Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Urbanist:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');


:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --register: #1C40F2;
  --register-hover: #0082F8;
  --success: #16a34a;
  --success-light: #f0fdf4;
  --warning: #d97706;
  --warning-light: #fffbeb;
  --danger: #dc2626;
  --danger-light: #fef2f2;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 6px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.03);
}

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

body {
  background-color: #f8fafc;
  color: var(--gray-800);
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

/* Extracted global utility */
.arz-mt-10 { margin-top: 10px; }

/* Application errors are logged to /tools/error-log.txt, never exposed in the UI. */
.arz-error-cell,
.audit-error,
.dns-api-error,
.bulk-result-error,
.audit-partial-errors,
#bulkError,
[role="alert"] {
  display: none !important;
}

/* Dedicated HTTP & Network tool controls and non-scrolling results */
.network-dedicated-form {
  display: grid;
  gap: 18px;
}

.network-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

.network-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.network-field .text-input,
.network-field .select-input {
  width: 100%;
  min-width: 0;
}

.network-provider-note {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.5;
}

.network-result-target {
  margin: 10px 0;
  overflow-wrap: anywhere;
}

.network-data-table {
  width: 100%;
  min-width: 0 !important;
  table-layout: fixed;
}

.network-data-table th,
.network-data-table td {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.network-metric-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  margin-top: 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.network-metric-grid dt,
.network-metric-grid dd {
  margin: 0;
  padding: 11px 14px;
  border-bottom: 1px solid var(--gray-200);
  overflow-wrap: anywhere;
}

.network-metric-grid dt {
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 700;
}

.network-metric-grid dd {
  color: var(--gray-900);
}

.network-metric-grid > :nth-last-child(-n + 2) {
  border-bottom: 0;
}

.network-note-list {
  margin: 12px 0 0 20px;
  color: var(--gray-700);
}

@media (max-width: 640px) {
  .network-options-grid,
  .network-metric-grid {
    grid-template-columns: 1fr;
  }

  .network-metric-grid > :nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--gray-200);
  }

  .network-metric-grid > :last-child {
    border-bottom: 0;
  }
}
