        .success-header {
            background: linear-gradient(90deg, #00b762, #1b975d);
            padding: 15px 20px;
        }

        .unavailable-header {
            background: linear-gradient(135deg, #dc3545, #e54c5b);
            border-radius: 8px 8px 0 0;
            padding: 15px 20px;
        }

        .domain-card {
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
            overflow: hidden;
            width: 100%;
            margin: 20px auto;
        }

        .domain-card.unavailable {
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
        }

        .check-icon {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid #09ab60;
        }

        .unavailable-icon {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid #dc3545;
        }

        .domain-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .domain-subtitle {
            color: #17a2b8;
            font-weight: 500;
            margin: 0;
        }

        .price {
            font-size: 1.25rem;
            font-weight: 600;
            color: #6c757d;
        }

        .add-to-cart-btn {
            background: linear-gradient(90deg, #00b762, #1b975d);
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .add-to-cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
        }

        .suggest-alternatives-btn {
            background: linear-gradient(135deg, #dc3545, #e54c5b);
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .suggest-alternatives-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        @media (max-width: 576px) {
            .success-header {
                padding: 12px 15px;
                text-align: center;
            }

            .success-header h4 {
                font-size: 1.1rem;
                margin: 0;
            }

            .domain-name {
                font-size: 1.2rem;
            }

            .price {
                font-size: 1.1rem;
                text-align: center;
                margin: 10px 0;
            }

            .add-to-cart-btn {
                width: 100%;
                margin-top: 10px;
            }

            .suggest-alternatives-btn {
                width: 100%;
                margin-top: 10px;
            }
        }

        @media (max-width: 768px) {
            .domain-card {
                margin: 10px;
            }
        }

        .header-menu {
            text-decoration: none;
            font-weight: 400;
        }

        [x-cloak] {
            display: none !important;
        }

        .dns-lookup-table tr:nth-child(even) {
            background: #dee2e6;
        }

        .page-title {
            padding: 10px;
        }

        .bg-menu {
            --bs-bg-opacity: 1;
            background-color: #4dc3ff !important;
        }

        .domain-area {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .whoisText {
            background: transparent;
            margin: 0;
            padding: 0;
            border: none;
            box-shadow: none;
            font-size: 1em;
            white-space: pre-wrap;
            word-break: break-all;
            overflow-x: auto;
        }

        /* ══════════════════════════════════════════════════
           Contact Page Enhanced UX/UI Styles
        ═══════════════════════════════════════════════════ */
        .contact-card-wrapper {
            margin-bottom: 2rem;
        }
        
        .contact-form-card {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
            transition: all 0.3s ease;
        }

        .contact-form-card:hover {
            box-shadow: 0 15px 40px rgba(77, 195, 255, 0.08) !important;
            border-color: rgba(77, 195, 255, 0.2);
        }

        .contact-info-card {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15) !important;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }

        .contact-info-card::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -50px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .contact-input-group {
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #cbd5e1;
            transition: all 0.25s ease;
        }

        .contact-input-group .input-group-text {
            background-color: #f8fafc;
            border: none;
            color: #64748b;
            padding-left: 18px;
            padding-right: 18px;
            transition: all 0.25s ease;
        }

        .contact-input-group .form-control {
            border: none;
            box-shadow: none;
            padding: 14px 16px;
            font-size: 0.95rem;
            color: var(--text-dark);
            background-color: #ffffff;
        }

        .contact-input-group:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(77, 195, 255, 0.15);
        }

        .contact-input-group:focus-within .input-group-text {
            color: var(--primary-color);
            background-color: #e6f6ff;
        }

        .contactTextarea {
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            padding: 14px 16px;
            font-size: 0.95rem;
            box-shadow: none;
            transition: all 0.25s ease;
            color: var(--text-dark);
            background-color: #ffffff;
        }

        .contactTextarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(77, 195, 255, 0.15);
        }

        .contact-detail-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.15rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-detail-item {
            transition: all 0.25s ease;
            padding: 8px;
            border-radius: 8px;
        }

        .contact-detail-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .contact-detail-item:hover .contact-detail-icon {
            background: #ffffff;
            color: #007bff;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        .contact-detail-btn-copy {
            background: rgba(255, 255, 255, 0.08);
            border: none;
            border-radius: 6px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: all 0.2s ease;
        }

        .contact-detail-btn-copy:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .text-light-blue {
            color: #cbd5e1 !important;
        }

        .fs-xs {
            font-size: 0.75rem !important;
        }

        .pulse-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #22c55e;
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            animation: pulse 1.8s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
            }
        }

        /* ══════════════════════════════════════════════════
           Enhanced Modern Footer Styles
        ═══════════════════════════════════════════════════ */
        .modern-footer {
            background: linear-gradient(180deg, #0f172a 0%, #090d16 100%) !important;
            color: #94a3b8 !important;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            position: relative;
        }

        .modern-footer .footer-inner {
            padding-top: 4rem !important;
            padding-bottom: 2.5rem !important;
            border-radius: 0;
        }

        .modern-footer .brand-col p {
            line-height: 1.6;
        }

        .modern-footer .footer-nav-title {
            color: #ffffff !important;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .modern-footer .footer-nav-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 28px;
            height: 2px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }

        .modern-footer .footer-nav-links li {
            margin-bottom: 10px;
        }

        .modern-footer .footer-nav-links a {
            color: #94a3b8 !important;
            text-decoration: none !important;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
        }

        .modern-footer .footer-nav-links a i {
            font-size: 0.65rem;
            transition: transform 0.25s ease;
        }

        .modern-footer .footer-nav-links a:hover {
            color: var(--primary-color) !important;
            transform: translateX(4px);
        }

        .modern-footer .footer-nav-links a:hover i {
            transform: translateX(2px);
        }

        .modern-footer .footer-social-links a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
            margin-right: 12px;
            transition: all 0.3s ease;
            text-decoration: none !important;
        }

        .modern-footer .footer-social-links a:hover {
            background: var(--primary-color);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(77, 195, 255, 0.3);
        }

        .modern-footer .footerCopyright {
            color: #64748b;
            font-size: 0.85rem;
        }

        .modern-footer .footerCopyright a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .modern-footer .footerCopyright a:hover {
            color: var(--primary-color);
        }

        .modern-footer .back-to-top-btn {
            width: 36px;
            height: 36px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modern-footer .back-to-top-btn:hover {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(77, 195, 255, 0.3);
        }

        .border-white-10 {
            border-color: rgba(255, 255, 255, 0.08) !important;
        }

        /* ══════════════════════════════════════════════════
           Floating Affiliate Switcher Styles
        ═══════════════════════════════════════════════════ */
        .affiliate-switcher-container {
            position: sticky;
            bottom: 24px;
            z-index: 1040;
            display: flex;
            justify-content: center;
            width: calc(100% + 150px);
            margin-left: -75px;
            max-width: 95vw;
            margin-top: 40px;
            margin-bottom: 25px;
            pointer-events: none;
        }

        .affiliate-switcher-bar {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 16px;
            background: #ffffff;
            border: 1px solid #cbd5e1;
            padding: 8px 18px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            pointer-events: auto;
            max-width: 100%;
            overflow-x: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .affiliate-switcher-bar::-webkit-scrollbar {
            display: none;
        }

        .affiliate-switcher-bar:hover {
            box-shadow: 0 12px 36px rgba(0, 123, 255, 0.12);
            border-color: #007bff;
        }

        .affiliate-switcher-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: #475569;
            letter-spacing: 0.3px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            border-right: 1px solid #cbd5e1;
            padding-right: 16px;
        }

        .affiliate-switcher-options {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: none; /* Hide scrollbar Firefox */
            -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
            max-width: 100%;
            padding: 2px 4px;
        }

        .affiliate-switcher-options::-webkit-scrollbar {
            display: none; /* Hide scrollbar Chrome/Safari/Opera */
        }

        .affiliate-switcher-option {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #64748b;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .affiliate-switcher-option:hover {
            background: #e2e8f0;
            color: #0f172a;
            transform: translateY(-1px);
        }

        .affiliate-switcher-option.active {
            background: rgba(0, 123, 255, 0.08);
            color: #007bff;
            border-color: #007bff;
            font-weight: 700;
            box-shadow: 0 2px 6px rgba(0, 123, 255, 0.1);
        }

        .affiliate-option-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .affiliate-option-icon img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .affiliate-option-icon i {
            font-size: 0.95rem;
            color: inherit;
        }

        .affiliate-option-icon svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
            display: block;
        }

        .affiliate-option-badge {
            font-size: 0.85rem;
            margin-left: 2px;
            color: #007bff;
            display: flex;
            align-items: center;
        }

        @media (max-width: 768px) {
            .affiliate-switcher-container {
                width: 100%;
                margin-left: 0;
                max-width: 100%;
            }
            .affiliate-switcher-bar {
                flex-direction: column;
                align-items: stretch;
                border-radius: 16px;
                padding: 12px;
                gap: 10px;
                width: 100%;
            }
            .affiliate-switcher-label {
                border-right: none;
                border-bottom: 1px solid #cbd5e1;
                padding-right: 0;
                padding-bottom: 8px;
                justify-content: center;
            }
            .affiliate-switcher-options {
                justify-content: center;
                flex-wrap: wrap;
            }
            .affiliate-switcher-option {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
        }

        /* DNS Enhanced UI Styles */
        .dns-results-wrapper {
            background: #ffffff;
            border: 1px solid #eef2f6;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            margin-bottom: 30px;
        }

        .dns-nav-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding-bottom: 16px;
            border-bottom: 1px solid #eef2f6;
            margin-bottom: 24px;
        }

        .dns-nav-tab {
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            border: 1px solid #e2e8f0;
            background-color: #ffffff;
            color: #64748b;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .dns-nav-tab:hover {
            color: #0f172a;
            border-color: #cbd5e1;
            background-color: #f8fafc;
        }

        .dns-nav-tab.active {
            background-color: #007bff;
            border-color: #007bff;
            color: #ffffff !important;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
        }

        .dns-tab-count {
            font-size: 0.7rem;
            background-color: #f1f5f9;
            color: #64748b;
            padding: 2px 6px;
            border-radius: 10px;
            font-weight: 700;
        }

        .dns-nav-tab.active .dns-tab-count {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .dns-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        @media (max-width: 992px) {
            .dns-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        .dns-card-item {
            background: #ffffff;
            border: 1px solid #eef2f6;
            border-radius: 14px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            height: fit-content;
        }

        .dns-card-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
            border-color: #e2e8f0;
        }

        .dns-card-item-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: #f8fafc;
            border-bottom: 1px solid #eef2f6;
        }

        .dns-card-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: #1e293b;
            font-size: 0.95rem;
        }

        .dns-card-title i {
            font-size: 1.1rem;
        }

        .dns-badge-pill {
            padding: 4px 10px;
            font-size: 0.7rem;
            font-weight: 800;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Custom colors for tags */
        .dns-pill-a { background-color: #dbeafe; color: #1e40af; }
        .dns-pill-aaaa { background-color: #f3e8ff; color: #6b21a8; }
        .dns-pill-ns { background-color: #dcfce7; color: #166534; }
        .dns-pill-mx { background-color: #fee2e2; color: #991b1b; }
        .dns-pill-soa { background-color: #ffedd5; color: #9a3412; }
        .dns-pill-txt { background-color: #ecfeff; color: #155e75; }

        .dns-card-metadata {
            display: flex;
            gap: 6px;
            align-items: center;
        }

        .dns-card-meta-pill {
            font-size: 0.7rem;
            color: #64748b;
            background-color: #f1f5f9;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 500;
        }

        .dns-card-item-body {
            padding: 20px;
            flex-grow: 1;
        }

        .dns-entry-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .dns-entry-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background-color: #f8fafc;
            border: 1px solid #f1f5f9;
            border-radius: 10px;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            font-size: 0.85rem;
            color: #334155;
            transition: all 0.2s ease;
        }

        .dns-entry-row:hover {
            background-color: #f1f5f9;
            border-color: #e2e8f0;
        }

        .dns-entry-value {
            word-break: break-all;
            flex-grow: 1;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dns-entry-action {
            flex-shrink: 0;
            margin-left: 12px;
        }

        .dns-row-copy-btn {
            border: none;
            background: transparent;
            color: #94a3b8;
            padding: 4px 8px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.15s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
        }

        .dns-row-copy-btn:hover {
            background-color: #e2e8f0;
            color: #475569;
        }

        /* SOA Key Value Layout */
        .dns-soa-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        @media (max-width: 576px) {
            .dns-soa-grid {
                grid-template-columns: 1fr;
            }
        }

        .dns-soa-item {
            background: #f8fafc;
            border: 1px solid #f1f5f9;
            padding: 12px 16px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .dns-soa-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dns-soa-value {
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e293b;
            word-break: break-all;
        }

        /* Empty Placeholder States */
        .dns-empty-state {
            padding: 40px 20px;
            text-align: center;
            color: #94a3b8;
            background: #f8fafc;
            border: 1px dashed #e2e8f0;
            border-radius: 14px;
            font-weight: 500;
        }

        /* Enhanced Domain Search Results UI */
        .enhanced-result-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0;
            margin: 0;
        }

        .enhanced-result-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            background-color: #f8fafc;
            border: 1px solid #eef2f6;
            border-radius: 12px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .enhanced-result-row:hover {
            background-color: #ffffff;
            border-color: #cbd5e1;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .result-domain-info {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-grow: 1;
            min-width: 0;
        }

        .result-domain-icon {
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .result-domain-text {
            font-size: 0.95rem;
            font-weight: 600;
            color: #334155;
            word-break: break-all;
        }

        .result-domain-text.taken {
            color: #94a3b8;
            text-decoration: line-through;
        }

        .result-domain-badge {
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 6px;
            text-transform: uppercase;
        }

        .result-badge-available {
            background-color: #dcfce7;
            color: #15803d;
        }

        .result-badge-taken {
            background-color: #fee2e2;
            color: #b91c1c;
        }

        .result-price-area {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0f172a;
            flex-shrink: 0;
            text-align: right;
        }

        .btn-buy-now {
            background-color: #007bff;
            color: #ffffff !important;
            border-radius: 6px !important;
            font-weight: 600;
            padding: 6px 16px !important;
            font-size: 0.8rem !important;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .btn-buy-now:hover {
            background-color: #0056b3;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
        }

        .btn-whois-info {
            background-color: #f1f5f9;
            color: #475569 !important;
            border-radius: 6px !important;
            font-weight: 600;
            padding: 6px 16px !important;
            font-size: 0.8rem !important;
            border: 1px solid #cbd5e1 !important;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .btn-whois-info:hover {
            background-color: #e2e8f0;
            color: #0f172a !important;
            border-color: #94a3b8 !important;
        }

        /* ══════════════════════════════════════════════════
           Skeleton / Shimmer loading for Domain Generator
        ═══════════════════════════════════════════════════ */
        @keyframes shimmer {
            0%   { background-position: -600px 0; }
            100% { background-position: 600px 0; }
        }

        .skeleton-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            background-color: #f8fafc;
            border: 1px solid #eef2f6;
            border-radius: 12px;
        }

        .skeleton-block {
            background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
            background-size: 600px 100%;
            animation: shimmer 1.4s infinite linear;
            border-radius: 6px;
        }

        .skeleton-icon  { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; }
        .skeleton-text  { height: 14px; flex-grow: 1; margin: 0 12px; }
        .skeleton-badge { width: 56px; height: 18px; border-radius: 6px; flex-shrink: 0; }
        .skeleton-btn   { width: 68px; height: 30px; border-radius: 6px; flex-shrink: 0; margin-left: 12px; }

        /* Suggested (unverified) badge */
        .result-badge-suggested {
            background-color: #fef9c3;
            color: #854d0e;
        }

        /* Checking badge */
        .result-badge-checking {
            background-color: #fef9c3;
            color: #854d0e;
        }

        /* Fade-out and shrink animation for taken domains */
        @keyframes fadeOutShrink {
            0% {
                opacity: 1;
                transform: scale(1);
                max-height: 100px;
                padding-top: 12px;
                padding-bottom: 12px;
                margin-top: 0px;
                margin-bottom: 12px;
                border-width: 1px;
            }
            100% {
                opacity: 0;
                transform: scale(0.95);
                max-height: 0;
                padding-top: 0;
                padding-bottom: 0;
                margin-top: 0px;
                margin-bottom: 0;
                border-width: 0;
                overflow: hidden;
            }
        }

        .fade-out-animation {
            animation: fadeOutShrink 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            pointer-events: none;
        }

        /* =====================================================
           Dark Mode Overrides
           ===================================================== */
        html.dark, body.dark {
            --main-bg: #0f172a;
            --sidebar-bg: #1e293b;
            --text-dark: #f8fafc;
            --text-muted: #94a3b8;
            --light-blue-bg: #1e293b;
            --border-color: #334155;
            --checkbox-border: #475569;
        }

        /* Sidebar Styles */
        html.dark .sidebar {
            background-color: #0f172a !important;
            border-right: 1px solid #334155 !important;
        }

        html.dark .sidebar .logo {
            color: #4dc3ff !important;
        }

        html.dark .sidebar .nav-link {
            background: linear-gradient(1deg, #1e293bba, #1e293bc9, #1e293bba) !important;
        }

        html.dark .sidebar .nav-link.active,
        html.dark .sidebar .nav-active {
            background-color: var(--primary-color) !important;
            color: #ffffff !important;
        }

        /* Results / Cards & Tables */
        html.dark .bg-white,
        html.dark .card,
        html.dark .contact-form-card,
        html.dark .dns-results-wrapper,
        html.dark .dns-card-item,
        html.dark .affiliate-switcher-bar,
        html.dark .result-list li,
        html.dark .blocklist-results-area,
        html.dark .rdap-card {
            background-color: #1e293b !important;
            background: #1e293b !important;
            border-color: #334155 !important;
            color: #f8fafc !important;
        }

        html.dark .result-list li {
            border-bottom: 1px dotted #334155 !important;
        }

        html.dark .dns-card-item-header {
            background-color: #1e293b !important;
            background: #1e293b !important;
            border-bottom: 1px solid #334155 !important;
        }

        html.dark .dns-card-title {
            color: #f8fafc !important;
        }

        html.dark .dns-entry-row {
            background-color: #1e293b !important;
            border-color: #334155 !important;
            color: #f8fafc !important;
        }

        html.dark .dns-entry-row:hover {
            background-color: #334155 !important;
        }

        html.dark .dns-nav-tab {
            background-color: #1e293b !important;
            border-color: #334155 !important;
            color: #94a3b8 !important;
        }

        html.dark .dns-nav-tab:hover {
            color: #ffffff !important;
            background-color: #334155 !important;
        }

        html.dark .dns-nav-tab.active {
            background-color: #007bff !important;
            border-color: #007bff !important;
            color: #ffffff !important;
        }

        /* Input Controls */
        html.dark .search-section .input-group,
        html.dark .generator-section .input-group,
        html.dark .contact-input-group,
        html.dark .contactTextarea {
            background-color: #1e293b !important;
            border-color: #334155 !important;
            color: #f8fafc !important;
        }

        html.dark .search-section .input-group .search-input,
        html.dark .generator-section .input-group .search-input,
        html.dark .contact-input-group .form-control,
        html.dark .contactTextarea,
        html.dark .form-control,
        html.dark .form-select {
            background-color: #1e293b !important;
            color: #f8fafc !important;
            border-color: #334155 !important;
        }

        html.dark .contact-input-group .input-group-text,
        html.dark .input-group-text {
            background-color: #334155 !important;
            color: #f8fafc !important;
            border-color: #334155 !important;
        }

        html.dark .search-section .input-group .search-input::placeholder,
        html.dark .generator-section .input-group .search-input::placeholder,
        html.dark .form-control::placeholder {
            color: #64748b !important;
        }

        /* Whois Text */
        html.dark .whoisText {
            color: #f8fafc !important;
        }

        /* Affiliate switcher option */
        html.dark .affiliate-switcher-option {
            background: #1e293b !important;
            border-color: #334155 !important;
            color: #94a3b8 !important;
        }

        html.dark .affiliate-switcher-option:hover {
            background: #334155 !important;
            color: #ffffff !important;
        }

        html.dark .affiliate-switcher-option.active {
            background: rgba(0, 123, 255, 0.2) !important;
            color: #4dc3ff !important;
            border-color: #4dc3ff !important;
        }

        /* Other Text elements */
        html.dark .text-dark,
        html.dark .whois-info-title,
        html.dark .domain-name,
        html.dark h3, html.dark h4, html.dark h5, html.dark h6,
        html.dark .homepageColumnsMain-title,
        html.dark .faq-main-title,
        html.dark .homefaq-subtitle {
            color: #f8fafc !important;
        }

        html.dark .text-muted, html.dark p, html.dark li span {
            color: #94a3b8 !important;
        }

        /* Tables */
        html.dark .table,
        html.dark .table td,
        html.dark .table th {
            background-color: #1e293b !important;
            color: #f8fafc !important;
            border-color: #334155 !important;
        }

        html.dark .table-striped tbody tr:nth-of-type(odd) {
            background-color: #0f172a !important;
        }

        html.dark .dns-lookup-table tr:nth-child(even) {
            background-color: #0f172a !important;
            background: #0f172a !important;
        }

        /* ══════════════════════════════════════════════════
           WYSIWYG Live Preview Styling (Blog & Pages parity)
           ═══════════════════════════════════════════════════ */
        .blog-content,
        .page-content,
        .cke_editable {
            font-family: "Inter", sans-serif;
            font-size: 16px;
            line-height: 1.8;
            color: #334155;
        }

        .blog-content,
        .page-content {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 15px;
        }

        /* Headings */
        .blog-content h1, .page-content h1, .cke_editable h1,
        .blog-content h2, .page-content h2, .cke_editable h2,
        .blog-content h3, .page-content h3, .cke_editable h3,
        .blog-content h4, .page-content h4, .cke_editable h4,
        .blog-content h5, .page-content h5, .cke_editable h5,
        .blog-content h6, .page-content h6, .cke_editable h6 {
            color: #1e293b;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .blog-content h1, .page-content h1, .cke_editable h1 { font-size: 2.25rem; }
        .blog-content h2, .page-content h2, .cke_editable h2 { font-size: 1.8rem; }
        .blog-content h3, .page-content h3, .cke_editable h3 { font-size: 1.5rem; }
        .blog-content h4, .page-content h4, .cke_editable h4 { font-size: 1.25rem; }
        .blog-content h5, .page-content h5, .cke_editable h5 { font-size: 1.1rem; }
        .blog-content h6, .page-content h6, .cke_editable h6 { font-size: 1rem; }

        /* Paragraphs & margins */
        .blog-content p, .page-content p, .cke_editable p {
            margin-bottom: 1.5rem;
        }

        /* Links */
        .blog-content a, .page-content a, .cke_editable a {
            color: #007bff;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
        .blog-content a:hover, .page-content a:hover, .cke_editable a:hover {
            color: #0056b3;
        }

        /* Lists */
        .blog-content ul, .page-content ul, .cke_editable ul {
            list-style-type: disc !important;
            padding-left: 2.5rem !important;
            margin-bottom: 1.5rem;
        }

        .blog-content ol, .page-content ol, .cke_editable ol {
            list-style-type: decimal !important;
            padding-left: 2.5rem !important;
            margin-bottom: 1.5rem;
        }

        .blog-content li, .page-content li, .cke_editable li {
            margin-bottom: 0.5rem;
        }

        /* Blockquotes */
        .blog-content blockquote, .page-content blockquote, .cke_editable blockquote {
            border-left: 4px solid #007bff;
            padding: 15px 20px;
            background-color: #f8fafc;
            font-style: italic;
            color: #475569;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        /* Images */
        .blog-content img, .page-content img, .cke_editable img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            margin: 2rem auto;
            display: block;
        }

        /* Tables */
        .blog-content table, .page-content table, .cke_editable table {
            width: 100%;
            margin-bottom: 2rem;
            border-collapse: collapse;
            border: 1px solid #cbd5e1;
        }

        .blog-content table th, .page-content table th, .cke_editable table th,
        .blog-content table td, .page-content table td, .cke_editable table td {
            padding: 12px 16px;
            border: 1px solid #cbd5e1;
            text-align: left;
        }

        .blog-content table th, .page-content table th, .cke_editable table th {
            background-color: #f1f5f9;
            font-weight: 600;
            color: #1e293b;
        }

        .blog-content table tr:nth-child(even), .page-content table tr:nth-child(even), .cke_editable table tr:nth-child(even) {
            background-color: #f8fafc;
        }

        /* Code & Preformatted */
        .blog-content code, .page-content code, .cke_editable code {
            background-color: #f1f5f9;
            padding: 3px 6px;
            border-radius: 4px;
            font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
            font-size: 0.9em;
            color: #d63384;
        }

        .blog-content pre, .page-content pre, .cke_editable pre {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin-bottom: 1.5rem;
            font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
        }

        .blog-content pre code, .page-content pre code, .cke_editable pre code {
            background-color: transparent;
            padding: 0;
            color: inherit;
            font-size: 0.95em;
        }

        /* Dark Mode Overrides */
        html.dark .blog-content,
        html.dark .page-content,
        html.dark .cke_editable {
            color: #cbd5e1 !important;
        }

        html.dark .blog-content h1, html.dark .page-content h1, html.dark .cke_editable h1,
        html.dark .blog-content h2, html.dark .page-content h2, html.dark .cke_editable h2,
        html.dark .blog-content h3, html.dark .page-content h3, html.dark .cke_editable h3,
        html.dark .blog-content h4, html.dark .page-content h4, html.dark .cke_editable h4,
        html.dark .blog-content h5, html.dark .page-content h5, html.dark .cke_editable h5,
        html.dark .blog-content h6, html.dark .page-content h6, html.dark .cke_editable h6 {
            color: #f8fafc !important;
        }

        html.dark .blog-content a, html.dark .page-content a, html.dark .cke_editable a {
            color: #3b82f6 !important;
        }
        html.dark .blog-content a:hover, html.dark .page-content a:hover, html.dark .cke_editable a:hover {
            color: #60a5fa !important;
        }

        html.dark .blog-content blockquote, html.dark .page-content blockquote, html.dark .cke_editable blockquote {
            background-color: #1e293b !important;
            border-left-color: #3b82f6 !important;
            color: #94a3b8 !important;
        }

        html.dark .blog-content table, html.dark .page-content table, html.dark .cke_editable table {
            border-color: #334155 !important;
        }

        html.dark .blog-content table th, html.dark .page-content table th, html.dark .cke_editable table th,
        html.dark .blog-content table td, html.dark .page-content table td, html.dark .cke_editable table td {
            border-color: #334155 !important;
            color: #cbd5e1 !important;
        }

        html.dark .blog-content table th, html.dark .page-content table th, html.dark .cke_editable table th {
            background-color: #334155 !important;
            color: #f8fafc !important;
        }

        html.dark .blog-content table tr:nth-child(even), html.dark .page-content table tr:nth-child(even), html.dark .cke_editable table tr:nth-child(even) {
            background-color: #0f172a !important;
        }

        html.dark .blog-content code, html.dark .page-content code, html.dark .cke_editable code {
            background-color: #334155 !important;
            color: #f43f5e !important;
        }

        html.dark .blog-content pre, html.dark .page-content pre, html.dark .cke_editable pre {
            background-color: #0b0f19 !important;
            color: #f8fafc !important;
        }

        /* Teleporter CSS for domain options */
        .domain-options {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .domain-options-inner-main {
            display: flex;
            width: 100%;
            align-items: center;
            background: #ffffff;
            border: 1px solid #eef2f6;
            border-radius: 8px;
            padding: 6px 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            position: relative;
        }

        .domain-options-inner {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
            flex-grow: 1;
            min-width: 0;
            white-space: nowrap;
        }

        .tld-teleport-item {
            display: inline-block;
            margin-right: 8px; /* Restored clear spacing between buttons */
            flex-shrink: 0;
        }
        
        .tld-teleport-item .domain-ckbx {
            margin: 0 !important;
            padding: 0 !important;
            display: block;
        }

        .tld-teleport-item .extension-item {
            margin: 0 !important;
            padding: 0 !important;
            display: block;
        }

        .tld-teleport-item .extension-item label {
            font-size: 0.95rem !important; /* Restored large readable font */
            padding: 5px 10px !important; /* Restored BIG vertical height */
            min-width: 30px !important;
            margin: 0 !important;
            cursor: pointer;
            border-radius: 6px !important;
        }

        .receiver-more-btn {
            position: relative;
            flex-shrink: 0;
            margin-left: auto;
            padding-left: 8px;
            border-left: 1px solid #eef2f6;
        }

        .nav-show-more-btn {
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 50px;
            padding: 6px 14px;
            background: #f8fafc;
            color: #475569;
            transition: all 0.2s ease;
        }
        
        .nav-show-more-btn:hover {
            background: #f1f5f9;
            color: #0f172a;
        }

        .receiver-domains {
            list-style: none;
            margin: 0;
            padding: 16px !important;
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            background: #ffffff;
            border: 1px solid #eef2f6;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 1000;
            min-width: 320px !important;
            max-height: 280px;
            overflow-y: auto;
        }

        /* Custom Scrollbar */
        .receiver-domains::-webkit-scrollbar {
            width: 6px;
        }
        .receiver-domains::-webkit-scrollbar-track {
            background: transparent;
        }
        .receiver-domains::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }
        .receiver-domains::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }
        html.dark .receiver-domains::-webkit-scrollbar-thumb {
            background: #475569;
        }
        html.dark .receiver-domains::-webkit-scrollbar-thumb:hover {
            background: #64748b;
        }

        .receiver-domains.show {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 8px !important;
            animation: fadeInDown 0.2s ease-out;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .receiver-domains .tld-teleport-item {
            display: block !important;
            margin: 0 !important;
            width: 100% !important;
        }

        .receiver-domains .tld-teleport-item .extension-item {
            display: block !important;
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .receiver-domains .tld-teleport-item .extension-item label {
            display: block !important;
            width: 100% !important;
            text-align: center !important;
            padding: 6px 4px !important;
            font-size: 0.82rem !important;
            border-radius: 8px !important;
            white-space: nowrap !important;
            text-overflow: ellipsis !important;
            overflow: hidden !important;
            margin: 0 !important;
        }
        
        html.dark .domain-options-inner-main,
        html.dark .receiver-domains {
            background: #1e293b;
            border-color: #334155;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        html.dark .nav-show-more-btn {
            background: #334155;
            color: #cbd5e1;
            border-color: #475569 !important;
        }
        
        html.dark .nav-show-more-btn:hover {
            background: #475569;
            color: #f8fafc;
        }
        
        html.dark .receiver-more-btn {
            border-color: #334155;
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            height: 35px;
            width: 35px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background-color: var(--sidebar-bg);
            color: var(--text-dark);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.2s, border-color 0.2s, color 0.2s;
            padding: 0;
        }

        .mobile-menu-toggle:hover {
            background-color: rgba(0, 0, 0, 0.05);
            color: var(--primary-color);
        }

        html.dark .mobile-menu-toggle:hover {
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--primary-color);
        }

        /* Mobile View Footer Centering */
        @media (max-width: 767.98px) {
            .modern-footer .brand-col p {
                margin: 0 auto !important;
            }
            .modern-footer .brand-col .footer-social-links {
                justify-content: center !important;
            }
            .modern-footer [class^="col-"],
            .modern-footer [class*=" col-"] {
                text-align: center !important;
            }
            .modern-footer .footer-nav-title::after {
                left: 50% !important;
                transform: translateX(-50%) !important;
            }
            .modern-footer .footer-nav-links a {
                justify-content: center;
            }
        }

        /* Mobile offcanvas close button styled with white background and border */
        #mobileMenu .btn-close {
            background-color: #ffffff !important;
            border: 1px solid #dee2e6 !important;
            opacity: 1 !important;
            padding: 8px !important;
            border-radius: 8px !important;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            background-size: 10px;
            transition: all 0.2s ease;
        }

        #mobileMenu .btn-close:hover {
            background-color: #f8fafc !important;
            border-color: #cbd5e1 !important;
            transform: scale(1.05);
        }

        /* Remove left margin on logo on mobile headers */
        @media (max-width: 1199.98px) {
            header .logo {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

        /* RTL Overrides for Right-to-Left Languages */
        html[dir="rtl"] .sidebar .nav-link i {
            margin-left: 10px !important;
            margin-right: 0 !important;
        }

        html[dir="rtl"] .logo {
            margin-right: 20px !important;
            margin-left: 0 !important;
        }

        html[dir="rtl"] .sidebar {
            border-left: 1px solid var(--border-color) !important;
            border-right: none !important;
        }
        html[dir="rtl"].dark .sidebar {
            border-left: 1px solid #334155 !important;
            border-right: none !important;
        }

        html[dir="rtl"] .modern-footer .footer-social-links a {
            margin-left: 12px !important;
            margin-right: 0 !important;
        }

        html[dir="rtl"] .fa-chevron-right,
        html[dir="rtl"] .fa-chevron-left,
        html[dir="rtl"] .fa-arrow-right,
        html[dir="rtl"] .fa-arrow-left {
            transform: scaleX(-1);
            display: inline-block;
        }

        html[dir="rtl"] .receiver-domains {
            right: auto !important;
            left: 0 !important;
        }

        html[dir="rtl"] .receiver-more-btn {
            margin-right: auto !important;
            margin-left: 0 !important;
            padding-right: 8px !important;
            padding-left: 0 !important;
            border-right: 1px solid #eef2f6 !important;
            border-left: none !important;
        }
        html[dir="rtl"].dark .receiver-more-btn {
            border-right-color: #334155 !important;
        }

        html[dir="rtl"] .affiliate-switcher-label {
            border-left: 1px solid #cbd5e1 !important;
            border-right: none !important;
            padding-left: 16px !important;
            padding-right: 0 !important;
        }
        html[dir="rtl"].dark .affiliate-switcher-label {
            border-left-color: #334155 !important;
        }

        /* RTL layout position adjustment for header dropdowns */
        html[dir="rtl"] .header-dropdown-menu {
            right: auto !important;
            left: 0 !important;
        }

        /* Custom scrollbar for header language and currency dropdown menus */
        .header-dropdown-menu {
            scrollbar-width: thin;
            scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
        }

        .header-dropdown-menu::-webkit-scrollbar {
            width: 6px;
        }

        .header-dropdown-menu::-webkit-scrollbar-track {
            background: transparent;
        }

        .header-dropdown-menu::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            border: 1px solid transparent;
        }

        .header-dropdown-menu::-webkit-scrollbar-thumb:hover {
            background-color: rgba(0, 0, 0, 0.3);
        }

        /* Dark mode scrollbar style */
        .dark .header-dropdown-menu {
            scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
        }

        .dark .header-dropdown-menu::-webkit-scrollbar-thumb {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .dark .header-dropdown-menu::-webkit-scrollbar-thumb:hover {
            background-color: rgba(255, 255, 255, 0.35);
        }

        /* Mobile header wrap styles to prevent overflow */
        @media (max-width: 575.98px) {
            .main-content header {
                flex-wrap: wrap !important;
                gap: 12px !important;
            }
            .header-left-btn {
                flex-wrap: wrap !important;
                gap: 8px !important;
            }
        }

        /* Prevent body-level horizontal scrollbars */
        body {
            overflow-x: hidden;
        }

        /* Stack search results rows on mobile and tablet to prevent squished text */
        @media (max-width: 991.98px) {
            .enhanced-result-row, .dns-entry-row {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 12px !important;
                padding: 12px 16px !important;
            }
            .result-domain-info {
                width: 100% !important;
                flex-wrap: wrap !important;
            }
            .enhanced-result-row > div:last-child {
                width: 100% !important;
                justify-content: space-between !important;
                margin-top: 4px !important;
            }
        }

        /* Responsive Ad Placements */
        div[id^="mock-placement"] {
            max-width: 100%;
            overflow-x: hidden;
        }
        div[id^="mock-placement"] img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* Responsive CKEditor Content */
        .page-content img, .blog-single-content img, .blog-content img, .tools_content img {
            max-width: 100%;
            height: auto;
        }
        .page-content table, .blog-single-content table, .blog-content table, .tools_content table {
            max-width: 100%;
            display: block;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        /* Equal height column cards */
        .homepageColumnsArea .row {
            display: flex !important;
            flex-wrap: wrap !important;
        }
        .homepageColumnsArea .row > [class*="col-"] {
            display: flex !important;
            flex-direction: column !important;
        }
        .homepageColumnsArea .homepageColumnsMain {
            display: flex !important;
            flex-direction: column !important;
            flex: 1 1 auto !important;
            margin-bottom: 32px !important;
        }

        /* Inline Hide Taken Switch */
        .hide-taken-inline-box {
            display: flex;
            align-items: center;
            padding-right: 12px;
            padding-left: 12px;
            border-left: 1px solid #eef2f6;
            background: transparent;
            flex-shrink: 0;
        }
        html.dark .hide-taken-inline-box {
            border-left-color: #334155;
        }

        /* Subdomain Finder Premium Row Styles */
        .subdomain-row {
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
            border-left: 4px solid transparent !important;
        }
        .subdomain-row:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05) !important;
            border-left-color: var(--primary-color) !important;
            border-color: rgba(77, 195, 255, 0.25) !important;
        }
        .subdomain-row .btn-outline-primary,
        .subdomain-row .btn-outline-info,
        .subdomain-row .btn-outline-secondary {
            transition: all 0.2s ease-in-out !important;
            background-color: #f8fafc;
            border-color: transparent !important;
        }
        .subdomain-row .btn-outline-primary:hover,
        .subdomain-row .btn-outline-info:hover,
        .subdomain-row .btn-outline-secondary:hover {
            transform: scale(1.1);
        }
        .subdomain-row .btn-outline-primary:hover {
            background-color: var(--bs-primary) !important;
            color: #fff !important;
        }
        .subdomain-row .btn-outline-info:hover {
            background-color: var(--bs-info) !important;
            color: #fff !important;
        }
        .subdomain-row .btn-outline-secondary:hover {
            background-color: var(--bs-secondary) !important;
            color: #fff !important;
        }
        html.dark .subdomain-row {
            background-color: #1e293b !important;
            border-color: #334155 !important;
        }
        html.dark .subdomain-row:hover {
            border-color: rgba(77, 195, 255, 0.35) !important;
        }
        html.dark .subdomain-row .result-domain-text {
            color: #f8fafc !important;
        }
        html.dark .subdomain-row .badge.bg-light {
            background-color: #0f172a !important;
            color: #94a3b8 !important;
            border-color: #334155 !important;
        }
        html.dark .subdomain-row .badge.bg-light .text-dark {
            color: #e2e8f0 !important;
        }
        html.dark .subdomain-row .btn-outline-primary,
        html.dark .subdomain-row .btn-outline-info,
        html.dark .subdomain-row .btn-outline-secondary {
            background-color: #0f172a;
            color: #94a3b8;
        }

        /* Hover Geolocation Link styling for the IP badge */
        .subdomain-row .hover-ip-link {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }
        .subdomain-row .hover-ip-link:hover {
            border-color: var(--primary-color) !important;
            background-color: var(--light-blue-bg) !important;
            transform: scale(1.02);
        }
        html.dark .subdomain-row .hover-ip-link:hover {
            background-color: #334155 !important;
            border-color: var(--primary-color) !important;
        }

        /* DNS Propagation Dashboard layout and Leaflet Styles */
        .dns-scroll-list::-webkit-scrollbar {
            width: 6px;
        }
        .dns-scroll-list::-webkit-scrollbar-track {
            background: transparent;
        }
        .dns-scroll-list::-webkit-scrollbar-thumb {
            background-color: #cbd5e1;
            border-radius: 3px;
        }
        html.dark .dns-scroll-list::-webkit-scrollbar-thumb {
            background-color: #475569;
        }
        .dns-minimal-row {
            transition: all 0.15s ease-in-out;
        }
        .dns-minimal-row:hover {
            transform: translateX(2px);
            border-color: var(--primary-color) !important;
        }
        html.dark .dns-minimal-row {
            background-color: #1e293b !important;
            border-color: #334155 !important;
        }
        html.dark .dns-minimal-row .text-dark {
            color: #f8fafc !important;
        }
        html.dark .bg-light {
            background-color: #0f172a !important;
        }
        #dns-map {
            z-index: 1;
        }
        /* Leaflet Map overrides for dark mode */
        html.dark .leaflet-container {
            background: #0f172a !important;
        }
        /* Pulsing Map Markers */
        .marker-pulse {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1.5px solid white;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        .marker-pulse::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: inherit;
            top: -6.5px;
            left: -6.5px;
            animation: marker-pulse-anim 1.5s infinite ease-out;
            opacity: 0;
        }
        @keyframes marker-pulse-anim {
            0% { transform: scale(0.5); opacity: 0.8; }
            100% { transform: scale(1.8); opacity: 0; }
        }

        /* Dark Mode Skeleton overrides */
        html.dark .skeleton-row {
            background-color: #1e293b !important;
            border-color: #334155 !important;
        }
        html.dark .skeleton-block {
            background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%) !important;
            background-size: 600px 100% !important;
            animation: shimmer 1.4s infinite linear !important;
        }