/************************************************************* * 1) BASIC GLOBAL STYLES & RESETS *************************************************************/*{/* Use this for scrollbar styling in modern browsers (Firefox, etc.) */ scrollbar-width:thin;scrollbar-color:#555555 #333333;box-sizing:border-box}::-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}body{font-family:Arial, sans-serif;font-size:16px;margin:0;padding:0;color:#fff;background:#000;display:flex;/* So footer can stick to bottom */ flex-direction:column;min-height:100vh;overflow:auto;transition:background 0.3s, color 0.3s}/************************************************************* * 2) DARK VS. LIGHT MODES *************************************************************/.dark-mode{background:#000;color:#fff}.light-mode{background:#fff;color:#000}/************************************************************* * 3) CONTAINER & CONTENT *************************************************************/.container{flex:1;width:100%;max-width:1100px;margin:0 auto;padding:15px}.content{margin-top:10px;margin-bottom:25px;width:100%}/************************************************************* * 4) NAV & FLYOUT MENU - MODERN SLIDE-IN NAVIGATION *************************************************************//* Navigation Menu - Base Styles */.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}/* Scrolled state - dark mode default */.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)}/* Light Mode - White background with dark text */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}/* Dark Mode - Transparent to dark transition */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-right:0;flex-shrink:0}.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}.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-search{margin-left:12px;margin-right:16px;flex-shrink:0;padding-left:8px}/* Navigation Links - Base Styles (Dark Mode Default) */.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)}/* Light Mode - Dark text on white background */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}/* Dark Mode - White text on dark/transparent background */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}/* 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;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 Panel */.flyout-menu{position:fixed;top:0;right:0;width:320px;height:100vh;max-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;-webkit-overflow-scrolling:touch;/* Smooth scrolling on iOS */ 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)}/* Light mode styling */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 - flyout menu keeps 320px fixed width like dnsai.com/advanced-lookup *//************************************************************* * 5) MODE SWITCH (Dark/Light) *************************************************************/.mode-switch{display:flex;align-items:center}.mode-switch input{display:none}.mode-switch label{display:block;width:35px;height:15px;background:#ccc;border-radius:25px;position:relative;cursor:pointer;margin-left:10px}.mode-switch label::after{content:'';width:11px;height:11px;background:#fff;border-radius:50%;position:absolute;top:2px;left:2px;transition:0.3s}.mode-switch input:checked + label::after{transform:translateX(20px)}/************************************************************* * 6) HEADER & HERO *************************************************************/.header-hero{position:relative;width:100%;height:300px;overflow:hidden;display:flex;align-items:center;justify-content:center;color:white;text-align:center;margin-bottom:0;/* If needed */}.header-hero video{position:absolute;top:0;left:50%;transform:translateX(-50%);width:100%;height:100%;object-fit:cover;z-index:-1}/* Logo in nav */.nav-logo{max-width:30px;height:auto}/* Title in hero */.header_title{display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:42px;padding-top:35px;padding-bottom:15px;margin:5px;text-align:center}/* Hero main - logo and domain text */.hero-main{display:flex;align-items:center;gap:6px}.header_title img{vertical-align:middle;max-width:60px;margin-right:12px}/* Hero subtitle */.hero-subtitle{font-size:14px;margin:14px 0 0;color:#fff}body.dark-mode .hero-subtitle{color:#fff}body.light-mode .hero-subtitle{color:#fff}/************************************************************* * 7) LAYOUT SECTIONS (TOP/BOTTOM ROWS, QUADRANTS) *************************************************************//* Top row:Quadrant1 (left), Quadrant2 + Ad1 (right) */.top-row{display:flex;flex-direction:column;gap:20px;width:100%}.left-column,.right-column{width:100%}.quadrant1{/* Additional quadrant1 styling if desired */}.right-column .quadrant2{margin-bottom:20px}.ad1{display:block;max-width:100%;overflow:hidden;padding:0;margin-top:15px;background:transparent;transition:height 0.3s ease, margin 0.3s ease, opacity 0.3s ease}/* Ad iframe styling */.ad1 .ad-iframe{width:100%;max-width:350px;height:145px;border:none;display:block;margin:0 auto;transition:height 0.3s ease, opacity 0.3s ease}/* Collapsed state when ads are disabled */.ad1.ad-hidden{height:0 !important;margin:0 !important;opacity:0;pointer-events:none;overflow:hidden}.ad1.ad-hidden .ad-iframe{height:0 !important;opacity:0}.ad1 .adsbygoogle{display:block;max-width:100%;overflow:hidden}/* Middle:Quadrant3 (DNS Records) */.quadrant3{margin-top:20px}/* Bottom row:Ad2 + Quadrant4 */.bottom-row{display:flex;flex-direction:column;gap:20px;margin-top:20px;width:100%}.ad2{display:none;background:#111;padding:10px;border-radius:8px}.quadrant4{/* Additional quadrant4 styling if needed */}/* ======================================================================== 8.1) CREATOR CREDIT ======================================================================== */.creator{text-align:center;font-size:0.5rem;margin:0.5rem 0}.creator-link{color:var(--clr-text);text-decoration:none;transition:color 0.3s}.creator-link:hover{color:var(--clr-text-muted)}/************************************************************* * 8.2) RESPONSIVE BREAKPOINTS *************************************************************//* For screens >= 768px (tablet & desktop) */@media (min-width:768px){.top-row{flex-direction:row;align-items:flex-start}/* LEFT COLUMN:Now "calc(65% - 200px)" so it's 200px narrower than 65%. */ .left-column{width:calc(65% - 200px)}/* RIGHT COLUMN:Now "calc(35% + 200px)" so it's 200px wider than 35%. */ .right-column{width:calc(35% + 200px);display:flex;flex-direction:column}.bottom-row{flex-direction:row}.ad2{width:20%}.quadrant4{width:80%}.record-box{max-width:450px;box-sizing:border-box}}/************************************************************* * 9) FOOTER *************************************************************/.footer{position:relative;bottom:10px;width:100%;text-align:center;font-size:6pt;transition:background 0.3s, color 0.3s}.footer-link{color:white;text-decoration:none;transition:color 0.3s}.footer-link:hover{text-decoration:none;color:white}.light-mode .footer-link{color:black}/*************************************************************| * 9.1) INFO SECTION (Above Footer)| *************************************************************/.info-section{background-color:transparent;padding:20px 0;margin-top:40px}.info-section .container{max-width:1100px;margin:0 auto;padding:0 15px}.info-section h3{margin-top:0;margin-bottom:1rem}.info-section p{margin-bottom:1rem;line-height:1.6}.info-section a{color:#0054FF;text-decoration:none}.info-section a:hover{color:#005FFF;text-decoration:underline}/* Light mode overrides for info section */.light-mode .info-section{color:#000}.light-mode .info-section a{color:#0054FF}/*************************************************************| * 9.2) FOOTER - MODERN MULTI-COLUMN LAYOUT| *************************************************************//* Base Footer Styles */.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:40px}/* Top Section Layout */.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}/* Brand / Logo + DNSai Title */.footer-brand{display:flex;flex-direction:column;align-items:center;text-align:center;gap:4px}.footer-logo{max-width:140px;height:auto;margin-bottom:0}.title-section{margin:0 0 20px}.logo-title{margin:0;font-size:2rem}.title-section .logo-title .bold{font-weight:700}.title-section .logo-title .thin{font-weight:300}/* Footer Navigation Columns */.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}.footer-column a:hover{color:#26c4ff;text-decoration:underline}/* Office Address + Social Icons */.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}.footer-address a{color:#fff;text-decoration:none;transition:color 0.3s}.footer-address a:hover{color:#26c4ff;text-decoration:underline}.footer-address .social-icons{display:flex;gap:16px;margin-top:16px}.footer-address .social-icons img{width:24px;height:24px;transition:opacity 0.3s}.footer-address .social-icons img:hover{opacity:0.75}/* Bottom Row:Privacy / Terms / Copyright */.footer-bottom{background-color:#191919;text-align:center;padding:20px 10px;border-top:1px solid #333;font-size:13px;color:#fff}.footer-bottom p{margin:4px 0}.footer-bottom a{color:#fff;text-decoration:none;margin:0 8px;transition:color 0.3s}.footer-bottom a:hover{color:#26c4ff;text-decoration:underline}/* Responsive Adjustments for Footer */@media (max-width:992px){.footer-top{padding:40px 20px 30px;gap:24px}}@media (max-width:768px){/* Stack everything into one centered column */ .footer-top{display:grid;grid-template-columns:1fr;gap:20px;padding:30px 10px 20px;max-width:360px;margin:0 auto}/* Navigation columns stack vertically */ .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}/* Address block tightening */ .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}/* Shrink the bottom row */ .footer-bottom{padding:10px 8px;font-size:12px}}/* Light-mode overrides for footer */.light-mode .site-footer{background-color:#fff !important;color:#000 !important;border-top:1px solid #E6E6E6}.light-mode .footer-column h4{color:#000 !important}.light-mode .footer-column a,.light-mode .footer-address a{color:#000 !important}.light-mode .footer-column a:hover,.light-mode .footer-address a:hover{color:#0054ff !important}.light-mode .footer-address p{color:#000 !important}.light-mode .footer-bottom{background-color:#E6E6E6 !important;color:#000 !important;border-top:1px solid #E6E6E6}.light-mode .footer-bottom a{color:#000 !important}.light-mode .footer-bottom a:hover{color:#0054ff !important}.light-mode .footer-address h4{color:#000 !important}/************************************************************* * 10) COMPANY-INFO BLOCK, RECORDS, ETC. *************************************************************/.company-info-block{display:flex;align-items:center;margin-top:15px}.company-info-block img{width:24px;height:24px;margin-right:8px}/* Social Media Icons */.social-media-icons{display:flex;align-items:center;gap:12px;margin-top:15px;flex-wrap:wrap}.social-media-icons a{display:inline-flex;align-items:center;justify-content:center;transition:opacity 0.2s ease}.social-media-icons a:hover{opacity:0.8}.social-media-icons a img{width:28px;height:28px;max-width:28px;max-height:28px;object-fit:contain}/* DNS Records Section */.dns-records-section{margin-top:20px;padding:20px;background-color:#111;border-radius:8px}.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}/* The grid that holds the record boxes */.records-grid{display:grid;grid-template-columns:1fr;/* For narrower screens */ grid-gap:15px;margin-top:20px}/* The record boxes themselves */.record-box{background-color:#222;padding:15px;border-radius:8px;border:1px solid #333;max-width:1050px;box-sizing:border-box;white-space:pre-wrap;word-wrap:break-word;overflow-wrap:break-word}.record-box h3{margin-top:0;margin-bottom:5px;font-size:16px;color:#40a8ff}.record-box p{margin:0;padding:0;font-size:13px;line-height:1.4em}/************************************************************* * 11) BUTTONS & LINKS *************************************************************//* Domain input field styling:dark background, white text */.form-input{font-size:12px;/* match main example so iOS doesn't zoom */ width:100%;padding:2px;margin:10px 0;border-radius:5px;border:1px solid #555555;box-sizing:border-box;background-color:#444444;color:white}.form-input::placeholder{color:#bbbbbb}/* Navigation Search Input */.nav-search-input{font-size:12px;width:100%;max-width:135px;padding:3px;margin:10px 0;border-radius:5px;border:1px solid #555;background:#444;color:#fff;box-sizing:border-box;transition:background 0.3s, color 0.3s, border 0.3s}.nav-search-input::placeholder{color:#bbb}/* Light mode override for nav search input */body.light-mode .nav-search-input{background-color:#fff !important;color:#000 !important;border:1px solid #ccc !important}body.light-mode .nav-search-input::placeholder{color:#888 !important}/* Dark mode - ensure nav search input is visible */body.dark-mode .nav-search-input{background-color:#444 !important;color:#fff !important;border:1px solid #555 !important}body.dark-mode .nav-search-input::placeholder{color:#bbb !important}/* Navigation Submit Button */.nav-submit-button{font-size:11px;padding:6px 12px;margin:0;border-radius:5px;border:none;background:linear-gradient(to bottom, #0054FF, #0447D3);color:white;cursor:pointer;transition:all 0.3s ease;font-weight:600;box-shadow:0 2px 4px rgba(0, 84, 255, 0.3)}.nav-submit-button:hover{background:linear-gradient(to bottom, #0447D3, #0054FF);transform:translateY(-1px);box-shadow:0 4px 8px rgba(0, 84, 255, 0.4)}.nav-submit-button:active{transform:translateY(0)}/* Light mode submit button (keep blue gradient) */.light-mode .nav-submit-button{background:linear-gradient(to bottom, #0054FF, #0447D3);color:white}.light-mode .nav-submit-button:hover{background:linear-gradient(to bottom, #0447D3, #0054FF)}/* Default button styling (dark gradient) */button{width:55%;padding:10px;margin:10px 0;border-radius:5px;border:1px solid #555555;box-sizing:border-box;background:linear-gradient(to bottom, #0054FF, #0447D3);color:white;cursor:pointer;transition:background 0.3s}button:disabled{opacity:0.5;cursor:not-allowed}button:hover:not(:disabled){background:linear-gradient(to bottom, #0447D3, #0054FF)}/* If you specifically use .submit-button */.submit-button{background:linear-gradient(to bottom, #0054FF, #0447D3);color:white;border:none;cursor:pointer;transition:background 0.3s;/* Override if you don't want 100% width */ width:auto;margin:5px}.submit-button:disabled{opacity:0.5;cursor:not-allowed}.submit-button:hover:not(:disabled){background:linear-gradient(to bottom, #0447D3, #0054FF)}/* Links within .content */.content a{color:#0054FF;text-decoration:none}.content a:hover{color:#005FFF}.record-box{max-width:1025px}/************************************************************* * 12) ADDITIONAL MEDIA QUERIES FOR MOBILE *************************************************************/@media (max-width:768px){.container{max-width:768px;margin:0 auto;padding:15px}.dns-records-section{font-size:9pt;max-width:100%}.record-box{font-size:9px;max-width:400px;padding-right:5px;min-width:350px}/* Mobile Navigation Adjustments */ .nav-menu{padding:8px 12px}.nav-links{display:none;/* Hide horizontal nav links on mobile */}.nav-search{display:block;/* Show the search bar on mobile (if you want) */ width:200px}.nav-search-input{max-width:135px;font-size:12px}.nav-submit-button{font-size:10px;padding:4px 10px}.menu-icon{font-size:22px;margin-left:8px}}/************************************************************* * 13) LIGHT MODE OVERRIDES (DNS SECTIONS, SUMMARY BOX, etc.) *************************************************************/.light-mode .dns-records-section{background-color:#f1f1f1}.light-mode .record-box{background-color:#fff;border:1px solid #ccc}/* Summary box overrides in light mode */.light-mode .summary-box{background-color:#f1f1f1 !important;border:1px solid #ccc !important;color:#000 !important}/************************************************************* * 14) LIGHT MODE:LABEL & VALUE COLOR FIXES *************************************************************//* 1) Email Gateway, DMARC Policy, Technology in DNS => label text black */.light-mode .summary-box span[style*="font-weight:bold;font-size:16px;color:#fff;"]{color:#000 !important}/* 2) DMARC Policy (p) => darker magenta/burgundy */.light-mode .summary-box span[style*="font-size:18px;color:#FC6FCF;"]{color:#a9005f !important}/* 3) Technology Listed In DNS => dark navy blue */.light-mode .summary-box span[style*="color:#97B8D5;"]{color:#000080 !important}/* 4) DMARC RUA => burnt orange in light mode */.light-mode .summary-box span[style*="color:#D3D212;"]{color:#cc5500 !important}/************************************************************* * 15) NEW - NOTIFICATIONS & NAV EXTRAS *************************************************************//* Copy & Share Notification divs */#copyNotification,#shareNotification{display:none;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);background-color:#0F1926;color:#fff;padding:12px;border-radius:5px;border:1px solid #97B8D5}#copyNotification{z-index:1000}#shareNotification{z-index:1005}/************************************************************* * 16) NAV-SEARCH FORM *************************************************************/.nav-search form{display:flex;/* side-by-side input + button */ flex-wrap:nowrap;/* no line wrapping */ align-items:center}/* Slight spacing between input & button */.nav-search form input{margin-right:2px}.nav-search form button{margin-left:2px}/************************************************************* * 17) COPY & SHARE BUTTONS *************************************************************//* These are small subtle buttons that appear near DNS records. They match the color scheme from your example. */.copy-button{margin-top:5px;width:50px;float:right;text-align:right;cursor:pointer;font-size:12px;color:#cccccc;border:none;padding:4px !important;background:transparent;outline:none}.copy-button:hover{border:1px solid #cccccc;width:50px;background:#000000 !important}/************************************************************* * 18) DNS RECORD TYPE COLORS & TXT/DKIM STYLING *************************************************************//* Record box with left border color */.record-box{border-left:4px solid #9ca3af;background:rgba(255, 255, 255, 0.03);padding:20px 24px;border-radius:12px;border-top:1px solid rgba(255, 255, 255, 0.1);border-right:1px solid rgba(255, 255, 255, 0.1);border-bottom:1px solid rgba(255, 255, 255, 0.1);position:relative;transition:all 0.3s ease;width:100%;box-sizing:border-box}.record-box:hover{background:rgba(255, 255, 255, 0.05);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0, 0, 0, 0.3)}/* TXT Records Container */.txt-records-container{display:flex;flex-direction:column;gap:0;width:100%}.txt-record-item{background:rgba(255, 255, 255, 0.03);border:none;border-left:3px solid #f59e0b;border-radius:4px;padding:12px;margin-bottom:12px;transition:background-color 0.2s ease}.txt-record-item:last-child{margin-bottom:0}.txt-record-item:hover{background:rgba(255, 255, 255, 0.05)}.txt-record-header{display:flex;align-items:center;justify-content:flex-start;margin-bottom:8px;gap:12px;flex-wrap:wrap}.txt-record-label{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;color:#f59e0b;flex-shrink:0;min-width:80px}.txt-record-purpose{display:inline-block;padding:3px 10px;border-radius:12px;font-size:11px;font-weight:600;background:rgba(245, 158, 11, 0.15);color:#f59e0b;white-space:nowrap;flex-shrink:0}.txt-record-value{font-size:14px;font-family:'Courier New', Courier, monospace;color:#ccc;line-height:1.6;word-break:break-all;white-space:pre-wrap}/* DKIM Records Container */.dkim-records-container{display:flex;flex-direction:column;gap:0;width:100%}.dkim-record-item{background:rgba(255, 255, 255, 0.03);border:none;border-left:3px solid #22c55e;border-radius:4px;padding:12px;margin-bottom:12px;transition:background-color 0.2s ease}.dkim-record-item:last-child{margin-bottom:0}.dkim-record-item:hover{background:rgba(255, 255, 255, 0.05)}.dkim-record-header{display:flex;align-items:center;justify-content:flex-start;margin-bottom:8px;gap:12px;flex-wrap:wrap}.dkim-record-label{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;color:#22c55e;flex-shrink:0;min-width:80px}.dkim-record-selector{font-size:12px;font-weight:600;color:#22c55e;font-family:'Courier New', Courier, monospace;background:rgba(34, 197, 94, 0.15);padding:3px 10px;border-radius:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}.dkim-record-value{font-size:14px;font-family:'Courier New', Courier, monospace;color:#ccc;line-height:1.6;word-break:break-all;white-space:pre-wrap}/* Light mode TXT/DKIM items */body.light-mode .txt-record-item,body.light-mode .dkim-record-item{background:rgba(0, 0, 0, 0.03)}body.light-mode .txt-record-item:hover,body.light-mode .dkim-record-item:hover{background:rgba(0, 0, 0, 0.05)}body.light-mode .txt-record-value,body.light-mode .dkim-record-value{color:#333}body.light-mode .record-box{background:rgba(0, 0, 0, 0.02);border-top-color:rgba(0, 0, 0, 0.1);border-right-color:rgba(0, 0, 0, 0.1);border-bottom-color:rgba(0, 0, 0, 0.1)}body.light-mode .record-box:hover{background:rgba(0, 0, 0, 0.04);box-shadow:0 8px 24px rgba(0, 0, 0, 0.1)}/* 14) DNS action buttons (top & bottom of .dns-records-section) 2026-07-14 */
.dns-header-actions{max-width:480px}.dns-action-buttons{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.dns-action-buttons a{text-decoration:none;display:block}.dns-action-buttons .submit-button{display:block;width:auto;margin:0;padding:9px 16px;font-size:13px;font-weight:600;border:none;border-radius:6px;white-space:nowrap;box-shadow:0 2px 4px rgba(0,84,255,0.25)}.dns-action-buttons .submit-button:hover:not(:disabled){box-shadow:0 3px 8px rgba(0,84,255,0.45)}@media (max-width:768px){.dns-header-actions{max-width:100%}.dns-action-buttons a{flex:1 1 calc(50% - 4px)}.dns-action-buttons .submit-button{width:100%;padding:8px 10px;font-size:12px;white-space:normal}}
/* 15) share/copy buttons: auto width + reserved border so hover doesn't reflow (2026-07-14) */
.copy-button{width:auto;min-width:50px;padding:4px 9px !important;text-align:center;white-space:nowrap;border:1px solid transparent;border-radius:4px}.copy-button:hover{width:auto;border-color:#cccccc}
