/*************************************************************
 * spf-lookup3.css - OPTIMIZED & MATCHED TO home_v13.css
 * 
 * SPF Analyzer styling with proper responsive design,
 * dark/light modes, navigation and flyout menu matched exactly
 * to home_v13.css, with no conflicts or redundancies
 *************************************************************/

/*************************************************************
 * 1) BASIC GLOBAL STYLES & RESETS
 *************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Dark mode scrollbar (default) */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #333333;
}
::-webkit-scrollbar-thumb {
  background-color: #555555;
  border-radius: 6px;
  border: 3px solid #333333;
  transition: background-color 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #777777;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #555555 #333333;
}

/* Light mode scrollbar */
body.light-mode ::-webkit-scrollbar-track {
  background: #e5e5e5;
}
body.light-mode ::-webkit-scrollbar-thumb {
  background-color: #b0b0b0;
  border-color: #e5e5e5;
}
body.light-mode ::-webkit-scrollbar-thumb:hover {
  background-color: #909090;
}
body.light-mode * {
  scrollbar-color: #b0b0b0 #e5e5e5;
}

/*************************************************************
 * 2) BODY & DARK/LIGHT MODES
 *************************************************************/
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  background: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode {
  background: #000 !important;
  color: #fff !important;
}

body.light-mode {
  background: #fff !important;
  color: #000 !important;
}

/*************************************************************
 * 3) CONTAINER & CONTENT - CONSOLIDATED
 *************************************************************/
.container {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode .container {
  background: transparent !important;
  color: #fff !important;
}

body.light-mode .container {
  background: transparent !important;
  color: #000 !important;
}

.content {
  margin-top: 80px;
  margin-bottom: 32px;
  width: 100%;
  transition: color 0.3s ease;
}

body.dark-mode .content {
  color: #fff !important;
}

body.light-mode .content {
  color: #000 !important;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin: 0 auto 48px auto;
  padding: 0 20px;
  max-width: 600px;
  width: 100%;
}

.logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.95;
}

.logo:hover {
  transform: scale(1.03);
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

body.light-mode .logo {
  filter: none;
}

/* Title styling */
.title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #fff;
  transition: color 0.3s ease;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible;
}

body.dark-mode .title {
  color: #fff !important;
}

body.light-mode .title {
  color: #000 !important;
}

/* Creator text */
.creator {
  font-size: 10pt;
  margin-bottom: 0;
  margin-top: 0.5rem;
  color: rgba(128, 128, 128, 0.8);
  transition: color 0.3s ease;
}

body.dark-mode .creator {
  color: rgba(128, 128, 128, 0.8) !important;
}

body.light-mode .creator {
  color: rgba(128, 128, 128, 0.7) !important;
}

.creator-link {
  color: rgba(128, 128, 128, 0.8) !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.3s ease;
}

.creator-link:hover,
.creator-link:visited,
.creator-link:active {
  color: rgba(128, 128, 128, 0.8) !important;
  text-decoration: none !important;
}

body.dark-mode .creator-link,
body.dark-mode .creator-link:hover {
  color: rgba(128, 128, 128, 0.8) !important;
}

body.light-mode .creator-link,
body.light-mode .creator-link:hover {
  color: rgba(128, 128, 128, 0.7) !important;
}

/*************************************************************
 * 4) FORM CONTAINER & INPUTS - CONSOLIDATED
 *************************************************************/
.form-container {
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 28px;
  border-radius: 24px;
  border: 1px solid transparent;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #26c4ff 0%, #0054ff 50%, #26c4ff 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

body.dark-mode .form-container {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.light-mode .form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

body.light-mode .form-container::before {
  background: linear-gradient(90deg, #0054ff 0%, #0040cc 50%, #0054ff 100%);
  background-size: 200% 100%;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
  transition: color 0.3s ease;
}

body.dark-mode .form-title {
  color: #fff !important;
}

body.light-mode .form-title {
  color: #000 !important;
}

.form-subtitle {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  font-weight: 400;
}

body.dark-mode .form-subtitle {
  color: rgba(255, 255, 255, 0.65) !important;
}

body.light-mode .form-subtitle {
  color: rgba(0, 0, 0, 0.6) !important;
}

/* Input Wrapper */
.input-wrapper {
  margin-bottom: 28px;
}

/* Form Input */
.form-input {
  font-size: 15px;
  width: 100%;
  max-width: 100%;
  padding: 18px 20px;
  margin: 0;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-input:focus {
  border-color: #26c4ff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 4px rgba(38, 196, 255, 0.15),
    0 6px 24px rgba(38, 196, 255, 0.2),
    inset 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.form-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.12);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

body.dark-mode .form-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .form-input:focus {
  border-color: #26c4ff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

body.dark-mode .form-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

body.dark-mode .form-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

body.light-mode .form-input {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #000 !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .form-input:focus {
  border-color: #0054ff !important;
  background: rgba(255, 255, 255, 1) !important;
  box-shadow:
    0 0 0 4px rgba(0, 84, 255, 0.15),
    0 6px 24px rgba(0, 84, 255, 0.15),
    inset 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .form-input:hover:not(:focus) {
  border-color: rgba(0, 0, 0, 0.22) !important;
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .form-input::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}

/* Label styling */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
  font-size: 13px;
  transition: color 0.3s ease;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.9;
}

body.dark-mode label {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.light-mode label {
  color: rgba(0, 0, 0, 0.8) !important;
}

.required-asterisk {
  color: #ff5555;
  font-weight: 700;
  margin-left: 2px;
}

body.light-mode .required-asterisk {
  color: #d62828 !important;
}

/* Button styling - CONSOLIDATED */
button,
.submit-button {
  padding: 14px 26px;
  margin: 0;
  border-radius: 12px;
  border: none;
  box-sizing: border-box;
  background: linear-gradient(135deg, #26c4ff 0%, #0054ff 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(38, 196, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

button::before,
.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

button:hover::before,
.submit-button:hover::before {
  left: 100%;
}

button:disabled,
.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

button:hover:not(:disabled),
.submit-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #0054ff 0%, #0048d4 100%);
  box-shadow: 0 6px 20px rgba(38, 196, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

button:active:not(:disabled),
.submit-button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(38, 196, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body.light-mode button,
body.light-mode .submit-button {
  background: linear-gradient(90deg, #0054ff 0%, #0048d4 100%) !important;
  color: #fff !important;
}

body.light-mode button:hover:not(:disabled),
body.light-mode .submit-button:hover:not(:disabled) {
  background: linear-gradient(90deg, #0048d4 0%, #0033aa 100%) !important;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Button Types */
.submit-button.primary {
  flex: 1;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.submit-button.secondary {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.submit-button.secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

body.light-mode .submit-button.secondary {
  background: rgba(0, 0, 0, 0.04) !important;
  color: #000 !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

body.light-mode .submit-button.secondary:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(0, 0, 0, 0.18) !important;
}

/* Button Icon */
.button-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
  transform: scale(1.1);
}

/*************************************************************
 * 5) NAVIGATION MENU - CONSOLIDATED
 *************************************************************/
.nav-menu {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  padding: 14px 20px;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  z-index: 1300;
  line-height: 1;
}

.nav-menu.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

body.light-mode .nav-menu {
  background-color: rgba(255, 255, 255, 1) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .nav-menu.scrolled {
  background-color: rgba(255, 255, 255, 1) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

body.dark-mode .nav-menu {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0);
}

body.dark-mode .nav-menu.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.nav-menu .mode-switch {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  align-self: center;
}

.nav-menu .menu-icon {
  margin-left: auto;
  flex-shrink: 0;
}

/* Nav brand link styling */
.nav-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.nav-brand-link:hover {
  opacity: 0.85;
}

.nav-logo {
  max-width: 30px;
  height: auto;
  display: block;
  flex-shrink: 0;
  align-self: center;
}

.nav-links {
  display: flex;
  gap: 8px;          /* spacing between nav items */
  align-items: center;
  flex-wrap: wrap;
  margin-left: 24px;
  margin-right: 50px;  /* Increased gap between nav links and search */
  flex-grow: 0;
  flex-shrink: 0;
}

/* Navigation Links - Base Styles (Dark Mode Default) */
.nav-menu .nav-links a,
.menu-icon {
  color: #fff;  /* White text for dark mode - ensures legibility */
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  transition: all 0.3s ease;
  padding: 8px 12px;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Add subtle shadow for legibility on transparent bg */
}

.nav-menu .nav-links a:hover,
.menu-icon:hover {
  color: #26c4ff;
  transform: translateY(-1px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Light Mode - Dark text on white background */
body.light-mode .nav-menu .nav-links a,
body.light-mode .menu-icon {
  color: #000 !important;  /* Dark text in light mode */
  text-shadow: none !important; /* No shadow needed on white background */
}

body.light-mode .nav-menu .nav-links a:hover,
body.light-mode .menu-icon:hover {
  color: #0054ff !important;  /* Blue hover in light mode */
  text-shadow: none !important;
}

body.light-mode .nav-menu .nav-links a::after {
  background: #0054ff;  /* Blue underline in light mode */
}

/* Dark Mode - White text on dark/transparent background */
body.dark-mode .nav-menu .nav-links a,
body.dark-mode .menu-icon {
  color: #fff !important;  /* White text in dark mode */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important; /* Stronger shadow for legibility */
}

body.dark-mode .nav-menu .nav-links a:hover,
body.dark-mode .menu-icon:hover {
  color: #26c4ff !important;  /* Cyan hover in dark mode */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .nav-menu .nav-links a::after {
  background: #26c4ff;  /* Cyan underline in dark mode */
}

/* Ensure nav logo is always visible */
.nav-logo {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

body.light-mode .nav-logo {
  filter: none;
}

body.dark-mode .nav-logo {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.nav-menu .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  width: 0;
  height: 2px;
  background: #26c4ff;
  transition: width 0.3s ease;
}

.nav-menu .nav-links a:hover::after {
  width: calc(100% - 24px);
}

.menu-icon {
  cursor: pointer;
  font-size: 28px;
  color: #fff;  /* Default white for dark mode */
  padding: 4px 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
  z-index: 1300;  /* Above flyout menu (1200) and backdrop (1100) */
  position: relative;
}

.menu-icon:hover {
  transform: scale(1.1);
}

/* Menu icon colors handled by nav-links rules above */

/*************************************************************
 * 6) FLYOUT MENU - CONSOLIDATED
 *************************************************************/
.flyout-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  cursor: pointer;
}

.flyout-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flyout-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #1a1a1a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.8);
  padding: 70px 24px 24px 24px;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flyout-menu.open {
  transform: translateX(0);
}

body.light-mode .flyout-menu {
  background: #ffffff !important;
  border-left: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15) !important;
}

/* Dark mode styling */
body.dark-mode .flyout-menu {
  background: #1a1a1a !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.8) !important;
}

/* Menu Links */
.flyout-menu a {
  display: block;
  color: #ffffff;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
}

.flyout-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #26c4ff;
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
}

.flyout-menu a:hover::before {
  transform: scaleY(1);
}

/* Light mode links */
body.light-mode .flyout-menu a {
  color: #1a1a1a !important;
}

body.light-mode .flyout-menu a::before {
  background: #0054ff;
}

body.light-mode .flyout-menu a:hover {
  background: rgba(0, 84, 255, 0.08) !important;
  color: #0054ff !important;
  transform: translateX(4px);
}

/* Dark mode links */
body.dark-mode .flyout-menu a {
  color: #ffffff !important;
}

body.dark-mode .flyout-menu a:hover {
  background: rgba(38, 196, 255, 0.12) !important;
  color: #26c4ff !important;
  transform: translateX(4px);
}

/* Close button - styled differently */
.flyout-menu .flyout-close {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px !important;
  color: #999 !important;
  opacity: 0.8;
  text-align: center;
  font-weight: 600;
}

.flyout-menu .flyout-close::before {
  display: none;
}

body.light-mode .flyout-menu .flyout-close {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #666 !important;
}

body.light-mode .flyout-menu .flyout-close:hover {
  opacity: 1;
  color: #1a1a1a !important;
  background: rgba(0, 0, 0, 0.05) !important;
  transform: none;
}

body.dark-mode .flyout-menu .flyout-close:hover {
  opacity: 1;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: none;
}

/* Custom scrollbar for flyout menu */
.flyout-menu::-webkit-scrollbar {
  width: 8px;
}

.flyout-menu::-webkit-scrollbar-track {
  background: transparent;
}

.flyout-menu::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

body.light-mode .flyout-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .flyout-menu {
    width: 85%;
    max-width: 400px;
    padding: 60px 20px 20px 20px;
    gap: 3px;
  }
  
  .flyout-menu a {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .flyout-menu .flyout-close {
    padding-top: 14px;
  }
}

@media (max-width: 480px) {
  .flyout-menu {
    width: 100%;
    max-width: 100%;
    padding: 55px 16px 16px 16px;
    gap: 2px;
  }
  
  .flyout-menu a {
    padding: 11px 12px;
    font-size: 14px;
  }
  
  .flyout-menu .flyout-close {
    padding-top: 12px;
  }
}

/*************************************************************
 * 7) MODE SWITCH (Dark/Light)
 *************************************************************/
.mode-switch {
  display: flex;
  align-items: center;
  margin: 0;
  padding-top: 20px;
}

.mode-switch input {
  display: none;
}

.mode-switch label {
  width: 35px;
  height: 15px;
  background: #ccc;
  border-radius: 25px;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  display: block;
}

/* Light mode - darker toggle for visibility */
body.light-mode .mode-switch label {
  background: #999 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Dark mode - lighter toggle for visibility */
body.dark-mode .mode-switch label {
  background: #666 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.mode-switch label::after {
  content: '';
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mode-switch input:checked + label::after {
  transform: translateX(20px);
}

/*************************************************************
 * 8) DNS RECORDS SECTION - CONSOLIDATED
 *************************************************************/
.dns-records-section {
  margin-top: 20px;
  padding: 24px;
  background-color: #111;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

body.dark-mode .dns-records-section {
  background-color: #111 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

body.light-mode .dns-records-section {
  background-color: #f9f9f9 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #000 !important;
}

.dns-records-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dns-records-header h2 {
  margin: 0;
  font-size: 24px;
}

.records-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  margin-top: 20px;
}

.record-box {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .record-box {
  background-color: #1a1a1a !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

body.light-mode .record-box {
  background-color: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #000 !important;
}

.record-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #26c4ff;
  transition: color 0.3s ease;
}

body.dark-mode .record-box h3 {
  color: #26c4ff !important;
}

body.light-mode .record-box h3 {
  color: #0054ff !important;
}

.record-box p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: inherit;
}

/*************************************************************
 * 9) SPF ANALYZER SPECIFIC STYLES - CONSOLIDATED
 *************************************************************/
.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.pill.ok {
  background: #0d5d2d;
  color: #a8f5c8;
}

.pill.warn {
  background: #6b2a0a;
  color: #ffd6b3;
}

.pill.info {
  background: #0d2d5d;
  color: #a8c8f5;
}

.pill.gray {
  background: #2a2a2a;
  color: #bbb;
}

body.light-mode .pill.ok {
  background: #d4edda;
  color: #155724 !important;
}

body.light-mode .pill.warn {
  background: #f8d7da;
  color: #721c24 !important;
}

body.light-mode .pill.info {
  background: #d1ecf1;
  color: #0c5460 !important;
}

body.light-mode .pill.gray {
  background: #e5e5e5;
  color: #666 !important;
}

.codeblock {
  white-space: pre-wrap;
  word-break: break-word;
  background: #0f1926;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #18314f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: #e0e0e0;
  transition: all 0.3s ease;
  line-height: 1.6;
}

body.dark-mode .codeblock {
  background: #0f1926 !important;
  border-color: #18314f !important;
  color: #e0e0e0 !important;
}

body.light-mode .codeblock {
  background: #f5f5f5 !important;
  border-color: #d0d0d0 !important;
  color: #1a1a1a !important;
}

.tree details {
  margin: 8px 0 0 16px;
}

.tree summary {
  cursor: pointer;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: inherit;
  transition: color 0.3s ease;
  line-height: 1.5;
}

body.dark-mode .tree summary {
  color: #fff !important;
}

body.light-mode .tree summary {
  color: #000 !important;
}

.muted {
  color: #9fb3c8;
  font-size: 13px;
  transition: color 0.3s ease;
  line-height: 1.6;
}

body.dark-mode .muted {
  color: #9fb3c8 !important;
}

body.light-mode .muted {
  color: #666 !important;
}

.grid-4 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

body.dark-mode .card {
  background: #111 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

body.light-mode .card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #000 !important;
}

.card > div:first-child {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card > div:not(:first-child) {
  font-size: 14px;
  color: inherit;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 16px;
}

.toast {
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background: #0f1926;
  color: #fff;
  padding: 12px 18px;
  border: 1px solid #18314f;
  border-radius: 10px;
  z-index: 10000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  font-size: 14px;
}

body.light-mode .toast {
  background: #ffffff !important;
  border-color: #d0d0d0 !important;
  color: #000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.errorbox {
  background: #2a0f0f;
  border: 1px solid #602b2b;
  color: #ffd6d6;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
}

body.dark-mode .errorbox {
  background: #2a0f0f !important;
  border-color: #602b2b !important;
  color: #ffd6d6 !important;
}

body.light-mode .errorbox {
  background: #ffe6e6 !important;
  border-color: #ff9999 !important;
  color: #8b0000 !important;
}

.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #2a4b6e;
  border-top-color: #26c4ff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  vertical-align: -3px;
  margin-left: 6px;
  flex-shrink: 0;
}

body.light-mode .loader {
  border-color: #c0c0c0;
  border-top-color: #0054ff;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 12px;
  color: inherit;
  transition: color 0.3s ease;
  line-height: 1.3;
}

body.dark-mode h3 {
  color: #fff !important;
}

body.light-mode h3 {
  color: #000 !important;
}

/*************************************************************
 * 10) FOOTER - CONSOLIDATED & OPTIMIZED
 *************************************************************/
.site-footer {
  background-color: #000;
  color: #fff;
  border-top: 1px solid #191919;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 60px;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  box-sizing: border-box;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.footer-brand-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-brand-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 0;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.title-section {
  margin: 0 0 20px;
}

.logo-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  transition: color 0.3s ease;
}

.title-section .logo-title .bold {
  font-weight: 700;
}

.title-section .logo-title .thin {
  font-weight: 300;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}

.footer-column {
  flex: 1 1 140px;
  min-width: 120px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-column a:hover,
.footer-column a:focus {
  color: #26c4ff;
  text-decoration: underline;
  transform: translateX(2px);
  outline: none;
}

.footer-column a:focus-visible {
  outline: 2px solid #26c4ff;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-address h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.footer-address p {
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.6;
}

.footer-address a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  display: inline-block;
}

.footer-address a:hover,
.footer-address a:focus {
  color: #26c4ff;
  text-decoration: underline;
  outline: none;
}

.footer-address a:focus-visible {
  outline: 2px solid #26c4ff;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-address .social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
}

.footer-address .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.3s ease;
  text-decoration: none;
  border-radius: 4px;
}

.footer-address .social-icons a:hover,
.footer-address .social-icons a:focus {
  transform: translateY(-2px);
  opacity: 0.8;
  outline: none;
}

.footer-address .social-icons a:focus-visible {
  outline: 2px solid #26c4ff;
  outline-offset: 3px;
}

.footer-address .social-icons img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-address .social-icons img:hover {
  opacity: 0.75;
}

.footer-bottom {
  background-color: #191919;
  text-align: center;
  padding: 20px 10px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-bottom p {
  margin: 4px 0;
  line-height: 1.6;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  display: inline-block;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #26c4ff;
  text-decoration: underline;
  outline: none;
}

.footer-bottom a:focus-visible {
  outline: 2px solid #26c4ff;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Light mode footer */
body.light-mode .site-footer {
  background-color: #fff !important;
  color: #000 !important;
  border-top: 1px solid #E6E6E6;
}

body.light-mode .footer-brand,
body.light-mode .footer-logo,
body.light-mode .title-section,
body.light-mode .logo-title,
body.light-mode .footer-column h4,
body.light-mode .footer-address h4,
body.light-mode .footer-column a,
body.light-mode .footer-address a,
body.light-mode .footer-address p,
body.light-mode .footer-bottom p,
body.light-mode .footer-bottom a {
  color: #000 !important;
}

body.light-mode .footer-column a:hover,
body.light-mode .footer-column a:focus,
body.light-mode .footer-address a:hover,
body.light-mode .footer-address a:focus,
body.light-mode .footer-bottom a:hover,
body.light-mode .footer-bottom a:focus {
  color: #0054ff !important;
}

body.light-mode .footer-column a:focus-visible,
body.light-mode .footer-address a:focus-visible,
body.light-mode .footer-address .social-icons a:focus-visible,
body.light-mode .footer-bottom a:focus-visible {
  outline-color: #0054ff !important;
}

body.light-mode .footer-bottom {
  background-color: #E6E6E6 !important;
  color: #000 !important;
  border-top: 1px solid #E6E6E6;
}

/* Dark mode footer */
body.dark-mode .site-footer {
  background-color: #000 !important;
  color: #fff !important;
  border-top: 1px solid #191919;
}

body.dark-mode .footer-column h4,
body.dark-mode .footer-address h4,
body.dark-mode .footer-column a,
body.dark-mode .footer-address a,
body.dark-mode .footer-address p,
body.dark-mode .footer-bottom p,
body.dark-mode .footer-bottom a,
body.dark-mode .logo-title {
  color: #fff !important;
}

body.dark-mode .footer-column a:hover,
body.dark-mode .footer-column a:focus,
body.dark-mode .footer-address a:hover,
body.dark-mode .footer-address a:focus,
body.dark-mode .footer-bottom a:hover,
body.dark-mode .footer-bottom a:focus {
  color: #26c4ff !important;
}

body.dark-mode .footer-column a:focus-visible,
body.dark-mode .footer-address a:focus-visible,
body.dark-mode .footer-address .social-icons a:focus-visible,
body.dark-mode .footer-bottom a:focus-visible {
  outline-color: #26c4ff !important;
}

body.dark-mode .footer-bottom {
  background-color: #191919 !important;
  border-top: 1px solid #333;
}

/*************************************************************
 * 11) RESPONSIVE DESIGN - CONSOLIDATED & OPTIMIZED
 *************************************************************/
/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding: 32px 24px;
  }
  
  .form-container {
    max-width: 600px;
  }
}

/* Desktop / Tablet Landscape */
@media (min-width: 992px) {
  .grid-4 {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Tablet */
@media (max-width: 992px) {
  .footer-top {
    padding: 40px 20px 30px;
    gap: 24px;
  }
  
  .footer-column {
    flex: 1 1 120px;
  }
  
  .logo-title {
    font-size: 1.75rem;
  }
}

/* Mobile / Tablet Portrait */
@media (max-width: 768px) {
  .container {
    padding: 20px 16px;
  }
  
  .content {
    margin-top: 70px;
    margin-bottom: 24px;
  }
  
  .hero-section {
    margin-bottom: 56px;
  }
  
  .logo {
    max-width: 100px;
  }
  
  .form-container {
    padding: 48px 40px;
    max-width: 580px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .form-input {
    font-size: 16px;
    padding: 20px 24px;
  }
  
  button,
  .submit-button {
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .pill {
    padding: 5px 12px;
    font-size: 13px;
  }
  
  .codeblock {
    padding: 20px;
    font-size: 14px;
  }
  
  .tree details {
    margin: 10px 0 0 20px;
  }
  
  .tree summary {
    font-size: 14px;
  }
  
  .muted {
    font-size: 14px;
  }
  
  .card {
    padding: 20px;
  }
  
  .card > div:first-child {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .card > div:not(:first-child) {
    font-size: 15px;
  }
  
  .actions {
    gap: 12px;
    margin: 24px 0 20px;
  }
  
  .record-box {
    padding: 24px;
  }
  
  .record-box p {
    font-size: 15px;
    line-height: 1.65;
  }
  
  .record-box h3 {
    font-size: 20px;
    margin: 24px 0 16px;
  }
  
  .dns-records-section {
    padding: 28px;
    border-radius: 16px;
  }
  
  .nav-links {
    display: none;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 10px 20px;
    max-width: 360px;
    margin: 0 auto;
  }
  
  .footer-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  
  .footer-column {
    margin-bottom: 0;
    text-align: center;
  }
  
  .footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .footer-column li {
    margin-bottom: 4px;
  }
  
  .footer-address {
    margin-top: 0;
  }
  
  .footer-address h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .footer-address p {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .footer-address .social-icons {
    gap: 8px;
    margin-top: 8px;
    justify-content: center;
  }
  
  .footer-address .social-icons img {
    width: 20px;
    height: 20px;
  }
  
  .footer-bottom {
    padding: 10px 8px;
    font-size: 12px;
  }
  
  .logo-title {
    font-size: 1.5rem;
  }
  
  .grid-4 {
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 16px 12px;
  }
  
  .content {
    margin-top: 64px;
  }
  
  .hero-section {
    margin-bottom: 32px;
    padding: 0 12px;
  }
  
  .logo {
    max-width: 80px;
  }
  
  .title {
    font-size: 1.5rem;
  }
  
  .form-container {
    padding: 32px 20px;
    border-radius: 20px;
  }
  
  .form-header {
    margin-bottom: 24px;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
  
  .form-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    font-size: 14px;
    padding: 16px 18px;
  }
  
  .input-wrapper {
    margin-bottom: 24px;
  }
  
  label {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  button,
  .submit-button {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .submit-button {
    width: 100%;
    justify-content: center;
  }
  
  .submit-button.primary {
    min-width: auto;
  }
  
  .submit-button.secondary {
    min-width: auto;
  }
  
  .pill {
    padding: 3px 8px;
    font-size: 11px;
    margin-right: 4px;
  }
  
  .codeblock {
    padding: 12px;
    font-size: 12px;
    line-height: 1.5;
  }
  
  .tree details {
    margin: 6px 0 0 12px;
  }
  
  .tree summary {
    font-size: 12px;
  }
  
  .muted {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .card {
    padding: 14px;
  }
  
  .card > div:first-child {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .card > div:not(:first-child) {
    font-size: 13px;
  }
  
  .actions {
    gap: 8px;
    margin: 16px 0 12px;
  }
  
  .actions .submit-button {
    flex: 1 1 auto;
    min-width: calc(50% - 4px);
    font-size: 13px;
    padding: 12px 18px;
  }
  
  .record-box {
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
  }
  
  .record-box p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .record-box h3 {
    font-size: 16px;
    margin: 16px 0 10px;
  }
  
  .dns-records-section {
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
  }
  
  .toast {
    top: 16px;
    padding: 10px 16px;
    font-size: 13px;
    max-width: calc(100% - 32px);
  }
  
  .errorbox {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 6px;
  }
  
  .loader {
    width: 14px;
    height: 14px;
    border-width: 1.5px;
  }
  
  h3 {
    font-size: 16px;
    margin: 16px 0 10px;
  }
  
  .site-footer {
    margin-top: 40px;
  }
  
  .footer-top {
    padding: 20px 10px 15px;
    gap: 16px;
  }
  
  .footer-logo {
    max-width: 100px;
  }
  
  .logo-title {
    font-size: 1.25rem;
  }
  
  .footer-column h4 {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }
  
  .footer-column li {
    margin-bottom: 3px;
    font-size: 12px;
  }
  
  .footer-address h4 {
    font-size: 0.85rem;
  }
  
  .footer-address p {
    font-size: 12px;
  }
  
  .footer-address .social-icons {
    gap: 6px;
    margin-top: 6px;
  }
  
  .footer-address .social-icons img {
    width: 18px;
    height: 18px;
  }
  
  .footer-bottom {
    padding: 8px 6px;
    font-size: 11px;
  }
  
  .footer-bottom a {
    margin: 0 4px;
  }
}

/*************************************************************
 * 12) PRINT STYLES
 *************************************************************/
@media print {
  .nav-menu,
  .flyout-menu,
  .flyout-backdrop,
  .mode-switch,
  .menu-icon,
  .form-actions,
  .actions,
  button,
  .submit-button,
  .site-footer {
    display: none !important;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
  }
  
  .container,
  .content,
  .form-container,
  .dns-records-section,
  .record-box {
    background: #fff !important;
    border-color: #ccc !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}

/*************************************************************
 * END OF STYLESHEET
 *************************************************************/

