/*****************************************************************
 * DNSai Domain Profile Report  –  MASTER STYLESHEET
 * ---------------------------------------------------------------
 *  Based on advanced-dnsai.css with adaptations for report generation
 *****************************************************************/

/* ================================================================
 *  1.  GLOBAL RESET & SCROLLBARS
 * ================================================================ */
*{
  box-sizing:border-box;
  /* custom scrollbar (WebKit + Firefox) */
  scrollbar-width:thin;
  scrollbar-color:#555555 #333333;
}
::-webkit-scrollbar        { width:12px; }
::-webkit-scrollbar-track  { background:#333333; }
::-webkit-scrollbar-thumb  {
  background-color:#555555;
  border-radius:6px;
  border:3px solid #333333;
}
::-webkit-scrollbar-thumb:hover{ background-color:#777777; }


/* ================================================================
 *  2.  BASE BODY & THEME MODES
 * ================================================================ */
body{
  font-family:Arial,sans-serif;
  font-size:16px;
  margin:0;
  padding:0;
  color:#fff;
  background:#000;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  overflow:auto;
  transition:background .3s,color .3s;
}
.dark-mode  { background:#000; color:#fff; }
.light-mode { background:#fff; color:#000; }


/* ================================================================
 *  3.  TYPOGRAPHY & INLINE UTILITIES
 * ================================================================ */
.centered{ text-align:center; margin:0; }
.bold    { font-weight:700; }
.thin    { font-weight:300; }
.small   { font-size:8px; text-align:left; padding-bottom:10px; }
.required-asterisk{ color:red; }

/* ================================================================
 *  4.  TITLES, HEADERS & CREATOR CREDIT
 * ================================================================ */
.title {
    text-align: center;
    font-size: 24px;
    padding-bottom: 15px;
    margin: 5px;
}

.header_title {
    text-align: center;
    font-size: 48px;
    padding-top: 35px;
    padding-bottom: 15px;
    margin: 5px;
}

.creator {
    text-align: center;
    font-size: 10pt;
    margin-bottom: 0;
    margin-top: 0.5rem;
    padding-bottom: 15px;
    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;
}

/* ================================================================
 *  5.  NAVIGATION MENU, MODE SWITCH & FLY-OUT
 * ================================================================ */

/* Navigation Bar */
.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.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    z-index: 1300;
    line-height: 1;
}

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.dark-mode .nav-menu {
    background-color: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
}

.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 {
    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;
    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-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 24px;
    margin-right: 50px;
    flex-grow: 0;
    flex-shrink: 0;
}

.nav-menu .nav-links a,
.menu-icon {
    color: #fff;
    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);
}

.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);
}

body.light-mode .nav-menu .nav-links a,
body.light-mode .menu-icon {
    color: #000 !important;
    text-shadow: none !important;
}

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

body.light-mode .nav-menu .nav-links a::after {
    background: #0054ff;
}

body.dark-mode .nav-menu .nav-links a,
body.dark-mode .menu-icon {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

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

body.dark-mode .nav-menu .nav-links a::after {
    background: #26c4ff;
}

.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;
    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;
    position: relative;
}

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

/* Flyout Menu Backdrop */
.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 */
.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;
}

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;
}

.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);
}

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);
}

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);
}

.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;
}

/* Mode Switch */
.mode-switch {
  display: flex;
  align-items: center;
  margin: 0;
}

.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;
}

body.light-mode .mode-switch label {
  background: #999 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

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);
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 70px;
    height: auto;
}

/* ================================================================
 *  6.  FORM CONTAINER
 * ================================================================ */
.container {
    max-width: 460px;
    margin: auto;
    margin-top: 60px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

body.dark-mode .container {
    background-color: #1c1c1c !important;
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body.light-mode .container {
    background-color: #e8e8e8 !important;
    color: #000 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* ================================================================
 *  7.  FORM INPUTS
 * ================================================================ */
.form-input {
    font-size: 14px;
}

.form-input,
button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555555;
    box-sizing: border-box;
    background-color: #444444;
    color: white;
}

.form-input::placeholder {
    color: #bbbbbb;
}

/* ================================================================
 *  8.  BUTTONS
 * ================================================================ */
button {
    background: linear-gradient(to bottom, #0054FF, #0447D3);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

button:hover:not(:disabled) {
    background: linear-gradient(to bottom, #0447D3, #0054FF);
}

/* ================================================================
 *  9.  PROCESSING MODAL & SPINNER
 * ================================================================ */
#processingModal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(8, 34, 67, 0.5);
    justify-content: center;
    align-items: center;
}

#processingModalContent {
    background: linear-gradient(to bottom, #191919, #333333);
    padding: 20px;
    border: 1px solid #97B8D5;
    width: 45%;
    text-align: center;
    border-radius: 15px;
    color: white;
}

.dark-mode #processingModalContent {
    background-color: #333333;
    color: white;
}

.light-mode #processingModalContent {
    background-color: #474747;
    color: white;
}

.spinner {
    display: inline;
    font-size: 1rem;
    white-space: nowrap;
}

.dot {
    display: inline-block;
    animation: spin 1.2s linear infinite;
}

.dot:nth-child(1) {
    animation-delay: -0.2s;
}

.dot:nth-child(2) {
    animation-delay: -0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes spin {
    0%, 80%, 100% {
        transform: scale(0.5);
    }
    40% {
        transform: scale(1.0);
    }
}

/* ================================================================
 * 10.  COLLAPSIBLE DRAWERS
 * ================================================================ */
.drawer {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
}

.drawer.open {
    max-height: 150px;
}

.drawer-toggle {
    cursor: pointer;
    color: #666666;
    margin-bottom: 20px;
    font-size: 12px;
    display: block;
    text-align: right;
}

.drawer-toggle:hover {
    color: #cccccc;
}

/* ================================================================
 * 11.  BULK BUTTON
 * ================================================================ */
.bulk-button {
    display: inline-block;
    font-size: 9pt;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 4px 10px;
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bulk-button:hover {
    background: #fff;
    color: #000;
}

.light-mode .bulk-button {
    color: #000;
    border: 1px solid #000;
    background: transparent;
}

.light-mode .bulk-button:hover {
    background: #000;
    color: #fff;
}

.bulk-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 25px 0 1rem 0;
    padding-top: 10px;
    height: auto;
}

/* ================================================================
 * 12.  FOOTER - COMPREHENSIVE SITE FOOTER
 * ================================================================ */
.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;
}

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

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

.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-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 .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 img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.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;
}

/* 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 .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-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-bottom {
    background-color: #191919 !important;
    border-top: 1px solid #333;
}

/* ================================================================
 * 13.  RESPONSIVE - MOBILE
 * ================================================================ */
@media (max-width: 768px) {
    /* Container scales to fit mobile */
    .container {
        max-width: 100%;
        width: 95%;
        margin: 20px auto;
        padding: 15px;
        border-radius: 10px;
    }

    /* Content adjusts for mobile */
    .content {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    /* Title sizes down */
    .title {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .header_title {
        font-size: 28px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    /* Logo smaller on mobile */
    .logo {
        max-width: 50px;
    }

    .nav-logo {
        max-width: 25px;
    }

    /* Form inputs full width */
    .form-input,
    button {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px;
    }

    /* Navigation adjustments */
    .nav-menu {
        padding: 10px 15px;
    }

    .nav-links {
        display: none; /* Hide on mobile, use flyout instead */
    }

    /* Bulk buttons container */
    .bulk-button-container {
        margin: 20px 0;
        padding: 15px 0;
    }

    .bulk-button {
        font-size: 11pt;
        padding: 8px 16px;
        max-width: 90%;
    }

    /* Footer responsive */
    .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;
    }

    /* Processing modal scales */
    #processingModalContent {
        width: 90%;
        padding: 15px;
    }

    /* Drawer adjustments */
    .drawer.open {
        max-height: 180px;
    }
}

/* Tablet / Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 600px;
        padding: 20px;
    }

    .content {
        margin-top: 70px;
    }
}

/* ================================================================
 * 14.  MISC HELPERS & LINK CLASSES
 * ================================================================ */
.hidden-honeypot {
    display: none;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* Link classes matching reference */
.link2 {
    color: #fff;
    text-decoration: none;
}

.light-mode .link2 {
    color: #000;
    text-decoration: none;
}

.light-mode .content a,
.light-mode .bulk-button,
.light-mode .link2 {
    color: #0054FF;
}

.light-mode .content a:hover,
.light-mode .bulk-button:hover,
.light-mode .link2:hover {
    color: #005FFF;
}

body.dark-mode .bulk-button {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

body.dark-mode .bulk-button:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

body.light-mode .bulk-button {
    color: #000000 !important;
    border-color: #000000 !important;
}

body.light-mode .bulk-button:hover {
    background: #000000 !important;
    color: #ffffff !important;
}
