:root {
--top-nav-link-color: #fff;
--top-nav-link-icon-color: #fff;
--main-header-banner-bg: #fff;
--main-header-padding-v: 10px;
--main-footer-bg: linear-gradient(to right, #142b81 0%,#1a62ae 100%);
--content-slider-cover-gradient-left: #ffffff00;
--content-slider-cover-gradient-right: #ffffff00;
}
.contactimg img {
    max-width: 80% !important;
}
.site-section.section-compare-packages.section-compare-packages-boxed.section-compare-packages-collapsible.section-default.section-combined.nextcloudproducts {
    padding-top: 20px;
}
/* ==========================================================================
   AI Support Bot - WebOké
   ========================================================================== */

/* Container */
.aibot-container {
    max-width: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 500px;
    border: 1px solid #e8e8e8;
}

/* Header */
.aibot-header {
    background: linear-gradient(90deg, #152a80, #1d65af);
    color: white;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aibot-header-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.aibot-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.aibot-header-info {
    flex: 1;
}

.aibot-header-title {
    font-size: 15px;
    font-weight: 600;
}

.aibot-status {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.aibot-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

/* Messages Area */
.aibot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8f9fa;
}

/* Message Bubbles */
.aibot-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.6;
    font-size: 14px;
    word-wrap: break-word;
}

.aibot-message-user {
    background: #0066cc;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.aibot-message-assistant {
    background: #ffffff;
    color: #333333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

/* Markdown styling in assistant messages */
.aibot-message-assistant p {
    margin: 0 0 10px 0;
}

.aibot-message-assistant p:last-child {
    margin-bottom: 0;
}

.aibot-message-assistant ol,
.aibot-message-assistant ul {
    margin: 10px 0;
    padding-left: 20px;
}

.aibot-message-assistant li {
    margin-bottom: 6px;
}

.aibot-message-assistant strong {
    font-weight: 600;
    color: #1a1a1a;
}

.aibot-message-assistant code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
}

.aibot-message-assistant a {
    color: #0066cc;
    text-decoration: none;
}

.aibot-message-assistant a:hover {
    text-decoration: underline;
}

/* Typing Indicator */
.aibot-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 12px;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.aibot-typing span {
    width: 8px;
    height: 8px;
    background: #0066cc;
    border-radius: 50%;
    animation: aibot-typing 1.4s infinite;
    opacity: 0.4;
}

.aibot-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.aibot-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes aibot-typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

/* Input Area */
.aibot-input-container,
.aibot-input-area {
    padding: 16px;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
    display: flex;
    gap: 12px;
}

.aibot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.aibot-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.aibot-input:disabled {
    background: #f9fafb;
}

.aibot-input::placeholder {
    color: #9ca3af;
}

.aibot-send-btn,
.aibot-send {
    width: 44px;
    height: 44px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.aibot-send-btn:hover:not(:disabled),
.aibot-send:hover:not(:disabled) {
    background: #0052a3;
}

.aibot-send-btn:disabled,
.aibot-send:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Error Message */
.aibot-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin: 0 16px 16px;
    border: 1px solid #fecaca;
}

/* Footer */
.aibot-footer {
    padding: 8px 16px;
    background: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* New Chat Button */
.aibot-new-chat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.aibot-new-chat:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #9ca3af;
}

.aibot-new-chat svg {
    opacity: 0.7;
}

.aibot-new-chat:hover svg {
    opacity: 1;
}

/* Copy Chat Button */
.aibot-copy-chat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.aibot-copy-chat:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #9ca3af;
}

.aibot-copy-chat svg {
    opacity: 0.7;
}

.aibot-copy-chat:hover svg {
    opacity: 1;
}

/* Copy to Ticket Button */
.aibot-copy-to-ticket {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.aibot-copy-to-ticket:hover {
    background: #0052a3;
}

/* Expand Button */
.aibot-expand-btn,
.aibot-expand {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.aibot-expand-btn:hover,
.aibot-expand:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Modal Overlay */
.aibot-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    backdrop-filter: blur(2px);
}

.aibot-overlay-visible,
.aibot-overlay.active {
    display: block;
}

/* Expanded Modal State */
.aibot-container.aibot-expanded,
.aibot-container.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: 70vh;
    z-index: 9999;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.aibot-container.aibot-expanded .aibot-messages,
.aibot-container.expanded .aibot-messages {
    padding: 24px;
}

.aibot-container.aibot-expanded .aibot-message,
.aibot-container.expanded .aibot-message {
    max-width: 75%;
    font-size: 15px;
}

/* ==========================================================================
   Kennisbank specific styles
   ========================================================================== */

.aibot-kb {
    margin-bottom: 20px;
}

.aibot-kb .aibot-footer {
    justify-content: space-between;
}

.aibot-kb .aibot-footer .aibot-new-chat {
    order: 2;
    margin-left: auto;
}

/* ==========================================================================
   Feedback Sterren
   ========================================================================== */

.aibot-feedback {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.aibot-feedback-label {
    font-size: 11px;
    color: #6b7280;
}

.aibot-stars {
    display: flex;
    gap: 2px;
}

.aibot-star {
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    font-size: 16px;
    color: #d1d5db;
    transition: color 0.15s, transform 0.15s;
    line-height: 1;
}

.aibot-star:hover {
    transform: scale(1.15);
}

.aibot-star.active,
.aibot-star:hover {
    color: #f59e0b;
}

.aibot-feedback-thanks {
    font-size: 11px;
    color: #22c55e;
    font-weight: 500;
}

/* ==========================================================================
   Image Upload
   ========================================================================== */

.aibot-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aibot-input-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.aibot-input-row .aibot-input {
    flex: 1;
}

/* Upload knop */
.aibot-upload-btn {
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.aibot-upload-btn:hover {
    background: #e5e7eb;
    color: #374151;
    border-color: #9ca3af;
}

.aibot-upload-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.aibot-upload-btn svg {
    width: 20px;
    height: 20px;
}

/* Verborgen file input */
.aibot-file-input {
    display: none;
}

/* Preview container */
.aibot-image-preview {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.aibot-image-preview.has-images {
    display: flex;
}

/* Individuele preview */
.aibot-preview-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #d1d5db;
}

.aibot-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aibot-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.aibot-preview-remove:hover {
    background: #dc2626;
}

/* Afbeeldingen in chat berichten */
.aibot-message-images {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.aibot-message-image {
    max-width: 120px;
    max-height: 120px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}

.aibot-message-image:hover {
    transform: scale(1.05);
}

/* Lightbox voor grote weergave */
.aibot-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.aibot-lightbox.active {
    display: flex;
}

.aibot-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.aibot-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aibot-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}


.kerstdomein {
color: #fff;
}
.kerstdomein b {
color: #fe8b35 !important;
}
.page-configureproductdomain .graphic-item img {
    max-width: 150%;
} 
#whatsappLink img {
    width: 100px;
    height: 100px;
      }
@media only screen and (max-width: 768px) {
  #whatsappLink img {
    width: 50px;
    height: 50px;
      }
     .discount-notice {
       font-size: 12px;
        padding: 6px 12px;
        margin: 10px 0;
        }
        #clientAlert26 {
    display: none !important;
}
   .email-only-korting .promo-content {
        gap: 8px;
    }
    
    .email-only-korting .new-price {
        font-size: 24px;
    }

    .email-only-korting {
        padding: 10px 16px;
    }
    
    .email-only-korting .label-email {
        display: none;
    }
}
.site-cms-emailpakket .col-lg-12 {
    max-width: 50%;
}

.email-only-korting {
    background: linear-gradient(135deg, rgba(255, 156, 0, 0.9) 0%, rgba(255, 140, 0, 0.9) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 12s ease infinite;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 24px auto 0;
    text-align: center;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 156, 0, 0.2);
}
/* IP Lookup Specifieke Styles - Vereist WHOIS CSS als basis */
.page-zoekipnummer {
    --info: #17a2b8;
    --danger: #dc3545;
    --success: #4CAF50;
}

/* Custom Alerts */
.page-zoekipnummer .custom-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-zoekipnummer .alert-icon {
    flex-shrink: 0;
}

.page-zoekipnummer .alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #0c5460;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.page-zoekipnummer .alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: #155724;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.page-zoekipnummer .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Your IP Section - Verbeterd */
.page-zoekipnummer .your-ip-section {
    margin-bottom: 2.5rem;
}

.page-zoekipnummer .your-ip-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 15px 35px rgba(59, 125, 216, 0.35),
        0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.page-zoekipnummer .your-ip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: shimmer 15s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-zoekipnummer .ip-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-zoekipnummer .ip-content {
    position: relative;
    z-index: 1;
}

.page-zoekipnummer .ip-content h2 {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-zoekipnummer .ip-value {
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Search Form Specifics */
.page-zoekipnummer .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.page-zoekipnummer .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-zoekipnummer .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.page-zoekipnummer .label-icon {
    opacity: 0.7;
}

.page-zoekipnummer .form-input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.page-zoekipnummer .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 125, 216, 0.1);
}

.page-zoekipnummer .button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-zoekipnummer .btn-primary,
.page-zoekipnummer .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.page-zoekipnummer .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.page-zoekipnummer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 125, 216, 0.3);
}

.page-zoekipnummer .btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.page-zoekipnummer .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 125, 216, 0.2);
}

.page-zoekipnummer .btn-primary.loading,
.page-zoekipnummer .btn-secondary.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.page-zoekipnummer .btn-primary.loading::before,
.page-zoekipnummer .btn-secondary.loading::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

.page-zoekipnummer .btn-secondary.loading::before {
    border-color: rgba(59, 125, 216, 0.3);
    border-top-color: var(--primary);
}

/* Results Section Specifics */
.page-zoekipnummer .search-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.page-zoekipnummer .summary-title {
    font-size: 1.5rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.page-zoekipnummer .highlight {
    color: var(--primary);
    font-weight: 700;
}

.page-zoekipnummer .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.page-zoekipnummer .result-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: var(--transition);
}

.page-zoekipnummer .result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.page-zoekipnummer .result-card.full-width {
    grid-column: 1 / -1;
}

.page-zoekipnummer .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 125, 216, 0.05) 0%, rgba(59, 125, 216, 0.02) 100%);
    border-bottom: 1px solid var(--gray-light);
}

.page-zoekipnummer .card-header h4 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.page-zoekipnummer .card-icon {
    color: var(--primary);
}

.page-zoekipnummer .card-content {
    padding: 1.5rem;
}

.page-zoekipnummer .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-zoekipnummer .info-row:last-child {
    border-bottom: none;
}

.page-zoekipnummer .info-label {
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.page-zoekipnummer .info-value {
    color: var(--gray-dark);
    font-weight: 600;
    text-align: right;
}

.page-zoekipnummer .flag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

/* WHOIS Table binnen results */
.page-zoekipnummer .whois-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.page-zoekipnummer .whois-row {
    transition: var(--transition);
}

.page-zoekipnummer .whois-row:hover {
    background: rgba(59, 125, 216, 0.03);
}

.page-zoekipnummer .whois-label {
    padding: 1rem;
    font-weight: 600;
    color: var(--gray);
    width: 35%;
    font-size: 0.875rem;
    background: rgba(248, 249, 250, 0.5);
    border-right: 1px solid var(--gray-light);
}

.page-zoekipnummer .whois-value {
    padding: 1rem;
    color: var(--gray-dark);
    word-break: break-word;
}

/* Products Highlight Section - AANGEPASTE versie voor correcte weergave */
.page-zoekipnummer .products-highlight-section {
    margin: 2rem 0;
    position: relative;
    width: 100%;
}

.page-zoekipnummer .products-wrapper {
    background: linear-gradient(135deg, rgba(59, 125, 216, 0.02) 0%, rgba(59, 125, 216, 0.01) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(59, 125, 216, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.page-zoekipnummer .products-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-zoekipnummer .products-title {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.page-zoekipnummer .products-subtitle {
    color: var(--gray);
    font-size: 0.8125rem;
}

/* BELANGRIJKE FIX: Forceer 4 kolommen voor producten */
.page-zoekipnummer .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.page-zoekipnummer .product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.page-zoekipnummer .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 125, 216, 0.12);
    border-color: rgba(59, 125, 216, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.page-zoekipnummer .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.page-zoekipnummer .product-card:hover::before {
    transform: translateX(0);
}

.page-zoekipnummer .product-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(59, 125, 216, 0.08) 0%, rgba(59, 125, 216, 0.04) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.page-zoekipnummer .product-card:hover .product-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.page-zoekipnummer .product-icon svg {
    width: 18px;
    height: 18px;
}

.page-zoekipnummer .product-name {
    font-size: 0.925rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.page-zoekipnummer .product-description {
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.page-zoekipnummer .product-link {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-zoekipnummer .product-card:hover .product-link {
    transform: translateX(2px);
    display: inline-block;
}

/* Featured Product */
.page-zoekipnummer .product-card.featured {
    border-color: rgba(59, 125, 216, 0.15);
    background: linear-gradient(135deg, rgba(59, 125, 216, 0.03) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.page-zoekipnummer .product-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Grid */
.page-zoekipnummer .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.page-zoekipnummer .info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.page-zoekipnummer .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.page-zoekipnummer .info-card-header {
    margin-bottom: 1.5rem;
}

.page-zoekipnummer .info-card-header h3 {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 600;
}

.page-zoekipnummer .info-card-content p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.page-zoekipnummer .info-card-content p:last-child {
    margin-bottom: 0;
}

.page-zoekipnummer .info-list {
    list-style: none;
    padding: 0;
}

.page-zoekipnummer .info-list li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    line-height: 1.6;
}

.page-zoekipnummer .info-box-icon {
    color: var(--primary);
}

/* Responsive Products - VERBETERD */
@media (min-width: 1200px) {
    .page-zoekipnummer .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .page-zoekipnummer .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-zoekipnummer .products-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .page-zoekipnummer .products-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .page-zoekipnummer .product-card {
        padding: 1.25rem;
    }
}

/* Responsive IP Lookup Specifics */
@media (max-width: 768px) {
    .page-zoekipnummer .form-grid {
        grid-template-columns: 1fr;
    }

    .page-zoekipnummer .button-group {
        flex-direction: column;
    }

    .page-zoekipnummer .btn-primary,
    .page-zoekipnummer .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .page-zoekipnummer .results-grid {
        grid-template-columns: 1fr;
    }

    .page-zoekipnummer .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .page-zoekipnummer .info-value {
        text-align: left;
    }

    .page-zoekipnummer .your-ip-card {
        flex-direction: column;
        text-align: center;
    }

    .page-zoekipnummer .info-grid {
        grid-template-columns: 1fr;
    }
}
.page-zoekipnummer .faq-section {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-zoekipnummer .faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-zoekipnummer .faq-title {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-zoekipnummer .faq-subtitle {
    color: var(--gray);
    font-size: 1.125rem;
}

.page-zoekipnummer .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-zoekipnummer .faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-zoekipnummer .faq-item:hover {
    box-shadow: var(--shadow-md);
}

.page-zoekipnummer .faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.page-zoekipnummer .faq-question:hover {
    color: var(--primary);
}

.page-zoekipnummer .faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.page-zoekipnummer .faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.page-zoekipnummer .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.page-zoekipnummer .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-zoekipnummer .faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 800px;
    padding: 0 2rem 1.5rem 2rem;
}

.page-zoekipnummer .faq-answer p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.page-zoekipnummer .faq-answer p:last-child {
    margin-bottom: 0;
}

.page-zoekipnummer .faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.page-zoekipnummer .faq-answer li {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.page-zoekipnummer .faq-answer code {
    background: rgba(59, 125, 216, 0.1);
    color: var(--primary-dark);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.page-zoekipnummer .faq-answer strong {
    color: var(--dark);
    font-weight: 600;
}

.page-zoekipnummer .faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-zoekipnummer .faq-answer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .page-zoekipnummer .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .page-zoekipnummer .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}
/* Animation for loading */
@keyframes spin {
    to { transform: rotate(360deg); }
}
.email-only-korting:hover {
    background: linear-gradient(135deg, rgba(255, 156, 0, 0.95) 0%, rgba(255, 140, 0, 0.95) 100%);
    background-size: 200% 200%;
    box-shadow: 0 4px 18px rgba(255, 156, 0, 0.25);
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.email-only-korting .promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.email-only-korting .label-email {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.email-only-korting .old-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: line-through;
}

.email-only-korting .new-price {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.email-only-korting .currency {
    font-size: 20px;
    font-weight: 600;
}

.email-only-korting .price-period {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 400;
    margin-left: 4px;
}

.email-only-korting .savings-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Container om te centreren */
.email-only-korting-wrapper {
    text-align: center;
    margin-top: 24px;
}
@font-face {
    font-family: 'lagom-medium-icons';
    font-display: swap !important;
}
@font-face {
    font-family: 'lagom-small-icons';
    font-display: swap !important;
}
.banner-graphic img {
    content-visibility: auto;
    will-change: transform;
    opacity: 1 !important;
    transition: none !important;
    width: 400%;
    min-height: 510;
    object-fit: contain;
}
.nordvpn .banner-graphic img {
    width: 350px !important;
}
.banner-graphic {
    min-height: 510px;
    position: relative;
}
.trustpilot-widget {
    min-height: 25px !important;
}
.cf-turnstile {
    height: 65px;
    margin-bottom: 12px;
}
.register-page .form-actions{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.page-contact .form-actions{
    flex-direction: column;
}
.page-supportticketsubmit-steptwo.lagom-not-portal .form-actions{
    display: block;
}
.fas.fa-leaf {
    display: inline-block;
    width: 1em;
    height: 1em;
}
.duurzaam {
    min-height: 25px;
    display: flex;
    align-items: center;
    min-width: 250px;
}
/* Page Container - DNS Style */
.page-domain2products {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --secondary: #10b981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --danger: #dc2626;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--gray-700);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Container */
.page-domain2products .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Page Header - removed since we don't need it anymore */

/* Info Box */
.page-domain2products .info-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.page-domain2products .info-box p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: var(--gray-600);
}

.page-domain2products .info-box a {
    color: var(--primary);
    text-decoration: none;
}

.page-domain2products .info-box a:hover {
    text-decoration: underline;
}

/* View Controls */
.page-domain2products .view-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

/* View Toggle */
.page-domain2products .view-toggle {
    display: flex;
    background: var(--gray-100);
    padding: 0.25rem;
    border-radius: var(--radius-md);
}

.page-domain2products .view-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.page-domain2products .view-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.page-domain2products .view-toggle-btn.active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
}

.page-domain2products .view-toggle-btn svg {
    width: 18px;
    height: 18px;
}

/* Refresh Button */
.page-domain2products .btn-refresh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.page-domain2products .btn-refresh:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.page-domain2products .btn-refresh:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.page-domain2products .btn-refresh svg {
    width: 18px;
    height: 18px;
}

/* Spinner */
.page-domain2products .spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
}

.page-domain2products .refreshSpinner svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Table Container */
.page-domain2products .table-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.page-domain2products .table-wrapper {
    overflow-x: auto;
}

/* DataTable Styling */
.page-domain2products table.dataTable {
    width: 100% !important;
    border: none;
    margin: 0 !important;
}

.page-domain2products table.dataTable thead {
    background: var(--gray-50);
}

.page-domain2products table.dataTable thead th {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border: none;
    border-bottom: 1px solid var(--gray-200);
}

/* Align ACTIES header to the right */
.page-domain2products table.dataTable thead th:last-child {
    text-align: right;
}

.page-domain2products table.dataTable tbody td {
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    vertical-align: top;
}

/* Align actions column content to the right */
.page-domain2products table.dataTable tbody td:last-child {
    text-align: right;
}

.page-domain2products table.dataTable tbody tr:hover {
    background: var(--gray-50);
}

.page-domain2products table.dataTable tbody tr:last-child td {
    border-bottom: none;
}

/* Domain Cell Container */
.page-domain2products .domain-cell-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Domain List */
.page-domain2products .domain-list {
    line-height: 1.6;
}

/* Action Buttons Container */
.page-domain2products .action-buttons {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

/* Action Buttons in Table - Uniform styling */
.page-domain2products .action-buttons a,
.page-domain2products .action-buttons button,
.page-domain2products .action-buttons .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    min-width: 110px !important;
    height: 36px !important;
    box-sizing: border-box !important;
    gap: 0.5rem !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Button hover effect */
.page-domain2products .action-buttons a::before,
.page-domain2products .action-buttons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.page-domain2products .action-buttons a:hover::before,
.page-domain2products .action-buttons button:hover::before {
    transform: translateX(0);
}

/* Verplaats button - Dark Green */
.page-domain2products .action-buttons a:first-child,
.page-domain2products .action-buttons button:first-child {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(21, 128, 61, 0.2) !important;
}

.page-domain2products .action-buttons a:first-child:hover,
.page-domain2products .action-buttons button:first-child:hover {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(21, 128, 61, 0.3) !important;
}

/* Ververs button - Same blue as main refresh button */
.page-domain2products .action-buttons a:last-child,
.page-domain2products .action-buttons button:last-child {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2) !important;
}

.page-domain2products .action-buttons a:last-child:hover,
.page-domain2products .action-buttons button:last-child:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3) !important;
}

/* Verplaats button (with hosting) - Blue */
.page-domain2products .action-buttons a.btn-move,
.page-domain2products .action-buttons button.btn-move {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2) !important;
}

.page-domain2products .action-buttons a.btn-move:hover,
.page-domain2products .action-buttons button.btn-move:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3) !important;
}

/* Toevoegen aan hosting button (standalone domains) - Green */
.page-domain2products .action-buttons a.btn-add-hosting,
.page-domain2products .action-buttons button.btn-add-hosting {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(21, 128, 61, 0.2) !important;
    min-width: 180px !important;
}

.page-domain2products .action-buttons a.btn-add-hosting:hover,
.page-domain2products .action-buttons button.btn-add-hosting:hover {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(21, 128, 61, 0.3) !important;
}

/* Ontkoppel button - Red */
.page-domain2products .action-buttons a.btn-danger,
.page-domain2products .action-buttons button.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2) !important;
}

.page-domain2products .action-buttons a.btn-danger:hover,
.page-domain2products .action-buttons button.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3) !important;
}

/* Remove the ::after pseudo elements since we're adding icons directly */
.page-domain2products .action-buttons a i,
.page-domain2products .action-buttons button i {
    font-size: 0.875rem !important;
}

/* DataTables Info & Pagination */
.page-domain2products .dataTables_info {
    padding: 1rem 1.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.page-domain2products .dataTables_paginate {
    padding: 1rem 1.5rem;
}

.page-domain2products .paginate_button {
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
}

.page-domain2products .paginate_button:hover:not(.disabled) {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.page-domain2products .paginate_button.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-domain2products .paginate_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal Styling */
.page-domain2products .modal-dialog {
    margin-top: 5rem;
}

.page-domain2products .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.page-domain2products .modal-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.page-domain2products .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
}

.page-domain2products .modal-body {
    padding: 2rem;
}

.page-domain2products .modal-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* Alert Styling */
.page-domain2products .alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.page-domain2products .alert-danger {
    background: #fee;
    color: var(--danger);
    border: 1px solid #fcc;
}

.page-domain2products .alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.page-domain2products .alert-info {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

/* Buttons */
.page-domain2products .btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.page-domain2products .btn-primary {
    background: var(--primary);
    color: var(--white);
}

.page-domain2products .btn-primary:hover {
    background: var(--primary-hover);
}

.page-domain2products .btn-default {
    background: var(--gray-200);
    color: var(--gray-700);
}

.page-domain2products .btn-default:hover {
    background: var(--gray-300);
}

/* Responsive */
@media (max-width: 768px) {
    .page-domain2products .view-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .page-domain2products .view-toggle {
        width: 100%;
    }
    
    .page-domain2products .btn-refresh {
        width: 100%;
        justify-content: center;
    }
}
/* Info box */
.page-movedomain .info-box-top {
    background: #e0e7ff;
    border: 1px solid #c7d2fe;
    color: #312e81;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.page-movedomain .info-box-top .info-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #4c1d95;
}

.page-movedomain .info-box-top p {
    margin: 0;
    line-height: 1.6;
}

/* Step cards */
.page-movedomain .step-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 80px;
}

.page-movedomain .step-number {
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

.page-movedomain .step-content {
    padding: 2rem;
}

.page-movedomain .step-content h3 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.25rem;
}

.page-movedomain .step-content p {
    color: #6b7280;
    margin: 0 0 1.5rem 0;
}

/* Domain select GROOT EN DUIDELIJK */
.page-movedomain .domain-select {
    width: 100%;
}

.page-movedomain .select2-container {
    width: 100% !important;
}

.page-movedomain .select2-container--default .select2-selection--multiple {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    min-height: 100px;
    padding: 8px;
}

.page-movedomain .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

/* SUBTIELERE DOMEIN TAGS */
.page-movedomain .select2-container--default .select2-selection__choice {
    background: #e0e7ff !important;
    border: 1px solid #c7d2fe !important;
    color: #312e81 !important;
    border-radius: 6px !important;
    padding: 8px 36px 8px 14px !important;
    margin: 4px !important;
    position: relative !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    display: inline-block !important;
}

/* X KNOP RECHTS */
.page-movedomain .select2-container--default .select2-selection__choice__remove {
    position: absolute !important;
    right: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #4c1d95 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 18px !important;
    text-align: center !important;
    cursor: pointer !important;
    border-radius: 4px !important;
}

.page-movedomain .select2-container--default .select2-selection__choice__remove:hover {
    background: rgba(76, 29, 149, 0.1) !important;
}

/* Search field */
.page-movedomain .select2-container--default .select2-search--inline .select2-search__field {
    color: #374151 !important;
    font-weight: 500;
}

/* Dropdown */
.page-movedomain .select2-dropdown {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.page-movedomain .select2-results__option {
    padding: 10px 16px;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.page-movedomain .select2-results__option--highlighted[aria-selected] {
    background-color: #3b82f6;
    color: white;
}

/* Destination cards */
.page-movedomain .destination-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.page-movedomain .destination-card {
    display: block;
    cursor: pointer;
}

.page-movedomain .destination-card input[type="radio"] {
    display: none;
}

.page-movedomain .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s;
    min-height: 220px;
    position: relative;
}

.page-movedomain .destination-card:hover .card-content {
    border-color: #93c5fd;
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59,130,246,0.15);
}

.page-movedomain .destination-card input[type="radio"]:checked + .card-content {
    border-color: #3b82f6;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.page-movedomain .card-icon {
    margin-bottom: 1rem;
    color: #6b7280;
}

.page-movedomain .destination-card input[type="radio"]:checked + .card-content .card-icon {
    color: #3b82f6;
}

.page-movedomain .card-text strong {
    display: block;
    color: #1f2937;
    margin-bottom: 4px;
}

.page-movedomain .card-text small {
    color: #6b7280;
    display: block;
    font-size: 0.85rem;
}

.page-movedomain .domain-slots {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.85rem;
}

.page-movedomain .slots-label {
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

.page-movedomain .slots-count {
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

.page-movedomain .slots-count.warning {
    color: #dc2626;
}


/* Warning box */
.page-movedomain .warning-box {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.page-movedomain .warning-box svg {
    flex-shrink: 0;
}

/* Buttons */
.page-movedomain .btn-primary, 
.page-movedomain .btn-secondary, 
.page-movedomain .btn-danger {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.page-movedomain .btn-primary {
    background: #3b82f6;
    color: white;
}

.page-movedomain .btn-primary:hover:not(:disabled) {
    background: #2563eb;
}

.page-movedomain .btn-primary:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.page-movedomain .btn-secondary {
    background: #f3f4f6;
    color: #4b5563;
}

.page-movedomain .btn-secondary:hover {
    background: #e5e7eb;
}

.page-movedomain .btn-danger {
    background: #dc2626;
    color: white;
}

.page-movedomain .btn-danger:hover:not(:disabled) {
    background: #b91c1c;
}

.page-movedomain .btn-danger:disabled {
    background: #fca5a5;
    cursor: not-allowed;
}

.page-movedomain .action-section {
    text-align: center;
    margin-top: 2rem;
}

/* Modal */
.page-movedomain .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.page-movedomain .confirm-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    width: 90%;
    max-width: 500px;
}

.page-movedomain .modal-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.page-movedomain .modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-movedomain .modal-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.25rem;
}

.page-movedomain .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.page-movedomain .close-btn:hover {
    background: #f3f4f6;
}

.page-movedomain .modal-body {
    padding: 1.5rem;
}

.page-movedomain .summary-section {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.page-movedomain .summary-item {
    margin-bottom: 1rem;
}

.page-movedomain .summary-item:last-child {
    margin-bottom: 0;
}

.page-movedomain .summary-item strong {
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.page-movedomain .summary-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-movedomain .summary-item ul li {
    padding: 0.25rem 0;
    color: #1f2937;
}

.page-movedomain .summary-item p {
    margin: 0;
    color: #1f2937;
}

.page-movedomain .confirm-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.page-movedomain .confirm-warning svg {
    flex-shrink: 0;
}

.page-movedomain .confirm-warning p {
    margin: 0;
}

.page-movedomain .modal-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.page-movedomain .modal-error svg {
    flex-shrink: 0;
    color: #dc2626;
}

.page-movedomain .modal-error p {
    margin: 0;
    font-weight: 500;
}

.page-movedomain .confirm-checkbox {
    margin: 1.5rem 0;
}

.page-movedomain .confirm-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.page-movedomain .confirm-checkbox input {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.page-movedomain .modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.page-movedomain #successBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    backdrop-filter: blur(4px);
}

/* Success Modal */
.page-movedomain .success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    animation: successBounceIn 0.5s ease-out;
}

@keyframes successBounceIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.page-movedomain .success-modal-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    max-width: 420px;
    min-width: 350px;
}

.page-movedomain .success-icon {
    margin-bottom: 1.5rem;
}

.page-movedomain .success-icon svg {
    color: #10b981;
    animation: checkmark 0.6s ease-out;
}

@keyframes checkmark {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

.page-movedomain .success-modal-card h2 {
    color: #1f2937;
    font-size: 2rem;
    margin: 0 0 1rem 0;
}

.page-movedomain .success-modal-card p {
    color: #6b7280;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.page-movedomain .redirect-text {
    font-size: 0.95rem !important;
    color: #9ca3af !important;
    margin-bottom: 2rem !important;
}

.page-movedomain #countdown {
    font-weight: 700;
    color: #3b82f6;
}

.page-movedomain .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .page-movedomain .step-card {
        padding-left: 60px;
    }
    
    .page-movedomain .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        left: -5px;
    }
    
    .page-movedomain .destination-options {
        grid-template-columns: 1fr;
    }
    
    .page-movedomain .modal-footer {
        flex-direction: column-reverse;
    }
    
    .page-movedomain .modal-footer button {
        width: 100%;
    }
}
/* DNS Management Styles */
.mijndns-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* General button style */
.mijndns-container button {
    cursor: pointer;
}

/* Hero Section */
.mijndns-hero {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mijndns-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(59, 125, 216, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mijndns-hero-content {
    position: relative;
    z-index: 1;
}

.mijndns-icon {
    font-size: 48px;
    color: #3b7dd8;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(59, 125, 216, 0.2));
}

.mijndns-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mijndns-description-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mijndns-description {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

/* NS Warning - Special styling */
.mijndns-ns-warning {
    margin-bottom: 20px;
}

.mijndns-ns-warning .mijndns-info-card {
    background: #fff3cd;
    border-color: #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.mijndns-ns-warning .mijndns-info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.mijndns-info-orange {
    border-left: 4px solid #ff9800;
}

.mijndns-ns-warning .mijndns-info-icon {
    font-size: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.mijndns-ns-warning .mijndns-info-content {
    flex: 1;
}

.mijndns-ns-warning .mijndns-info-content h3 {
    font-size: 16px;
    color: #1a2332;
    margin-bottom: 6px;
    font-weight: 600;
}

.mijndns-ns-warning .mijndns-info-content p {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.mijndns-ns-warning .btn {
    margin-top: 10px;
}

.mijndns-info-note {
    background: #e3f2fd;
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 13px;
    margin-bottom: 20px;
}

.mijndns-info-note i {
    color: #1976d2;
    flex-shrink: 0;
}

/* Domain Selection */
.mijndns-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
}

.mijndns-domain-select-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: stretch;
}

.mijndns-domain-select {
    flex: 1;
    font-size: 15px;
    padding: 10px 15px;
    padding-right: 40px;
    border: 2px solid #e1e5eb;
    border-radius: 6px;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.mijndns-fetch-btn {
    padding: 10px 20px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #3b7dd8;
    border: none;
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mijndns-fetch-btn:hover {
    background: #2968c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mijndns-fetch-btn.is-loading,
.mijndns-fetch-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.mijndns-fetch-btn.is-loading {
    pointer-events: none;
}

.mijndns-domain-select:focus {
    border-color: #3b7dd8;
    box-shadow: 0 0 0 3px rgba(59, 125, 216, 0.1);
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b7dd8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.mijndns-action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mijndns-action-buttons .btn {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.mijndns-action-buttons .btn i {
    font-size: 14px;
}

.mijndns-action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mijndns-action-buttons .btn-success {
    background: #4CAF50;
    border-color: #4CAF50;
}

.mijndns-action-buttons .btn-success:hover {
    background: #45a049;
    border-color: #45a049;
}

.mijndns-action-buttons .btn-info {
    background: #17a2b8;
    border-color: #17a2b8;
}

.mijndns-action-buttons .btn-info:hover {
    background: #138496;
    border-color: #138496;
}

.mijndns-action-buttons .btn-warning {
    background: #ff9800;
    border-color: #ff9800;
}

.mijndns-action-buttons .btn-warning:hover {
    background: #fb8c00;
    border-color: #fb8c00;
}

.mijndns-action-buttons .btn-primary {
    background: #3b7dd8;
    border-color: #3b7dd8;
}

.mijndns-action-buttons .btn-primary:hover {
    background: #2968c8;
    border-color: #2968c8;
}

/* Status Grid - NIEUW */
.mijndns-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .mijndns-status-grid {
        grid-template-columns: 1fr;
    }
}

.mijndns-status-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mijndns-status-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.mijndns-status-header {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mijndns-status-header.status-warning {
    background: #fff3cd;
    border-bottom-color: #ffeaa7;
}

.mijndns-status-header.status-success {
    background: #d4edda;
    border-bottom-color: #c3e6cb;
}

.mijndns-status-header h3 {
    font-size: 16px;
    color: #1a2332;
    font-weight: 600;
    margin: 0;
}

.mijndns-status-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.mijndns-status-header.status-warning .mijndns-status-icon {
    color: #ff9800;
}

.mijndns-status-header.status-success .mijndns-status-icon {
    color: #4CAF50;
}

.mijndns-status-icon.email-icon {
    color: #3b7dd8;
}

.mijndns-status-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mijndns-status-body p {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.mijndns-nameserver-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mijndns-ns-badge {
    padding: 4px 10px;
    background: #f7f9fb;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #2c3e50;
    border: 1px solid #e8ecef;
}

.mijndns-status-body .btn {
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.mijndns-status-body .btn i {
    font-size: 14px;
}

/* Form Section */
.mijndns-form-section {
    margin-bottom: 20px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mijndns-form-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #3b7dd8;
}

.mijndns-form-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8ecef;
}

.mijndns-form-header h3 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 8px;
    font-weight: 600;
}

.mijndns-form-card .form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.mijndns-input,
.mijndns-select,
.mijndns-textarea {
    font-size: 16px !important;
    padding: 12px 16px !important;
    border: 2px solid #e1e5eb !important;
    border-radius: 6px !important;
    background: #f8f9fa !important;
    transition: all 0.2s ease !important;
}

.mijndns-input:focus,
.mijndns-select:focus,
.mijndns-textarea:focus {
    border-color: #3b7dd8 !important;
    box-shadow: 0 0 0 3px rgba(59, 125, 216, 0.1) !important;
    background: #ffffff !important;
}

.mijndns-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Ensure textarea also has margin for warning */
.mijndns-textarea.mijndns-input-warning {
    border-color: #ff9800 !important;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15) !important;
}

.mijndns-form-card .btn-lg {
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
}

/* Records Table */
.mijndns-records-section {
    margin-bottom: 20px;
}

.mijndns-records-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mijndns-records-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.mijndns-records-header h3 {
    font-size: 20px;
    color: #1a2332;
    font-weight: 600;
    margin: 0;
}

.mijndns-record-count {
    padding: 6px 16px;
    background: #3b7dd8;
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(59, 125, 216, 0.2);
}

.mijndns-table {
    margin-bottom: 0;
}

.mijndns-table thead {
    background: #f8f9fa;
}

.mijndns-table th {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 18px;
    border-bottom: 2px solid #dee2e6;
    background: #f8f9fa;
}

.mijndns-table td {
    padding: 14px 18px;
    vertical-align: middle;
    font-size: 15px;
    color: #212529;
    border-bottom: 1px solid #e9ecef;
}

.mijndns-table tbody tr {
    transition: all 0.2s ease;
}

.mijndns-table tbody tr:hover {
    background: rgba(59, 125, 216, 0.04);
    transform: translateX(2px);
}

.mijndns-table tbody tr:last-child td {
    border-bottom: none;
}

.mijndns-name-cell {
    font-weight: 500;
    color: #1a2332;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    letter-spacing: -0.2px;
}

/* Type Badges */
.mijndns-table .badge {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 4px;
}



/* Dropdown arrow fix - force override any other styles */
select.form-control.mijndns-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 12px) center !important;
    background-size: 20px !important;
}

select.form-control.mijndns-select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b7dd8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}

/* Value Cell */
.mijndns-value-cell { 
    max-width: 400px; 
}

.mijndns-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mijndns-value-text {
    font-family: 'SF Mono', Monaco, 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-size: 14px;
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    background: rgba(248, 249, 250, 0.5);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.mijndns-copy-btn {
    background: #ffffff;
    border: 1px solid #adb5bd;
    color: #495057;
    transition: all 0.2s ease;
    font-size: 12px;
}

.mijndns-copy-btn:hover {
    background: #3b7dd8;
    border-color: #3b7dd8;
    color: #ffffff;
    transform: translateY(-1px);
}

.mijndns-copy-btn.btn-success {
    background: #4CAF50 !important;
    border-color: #4CAF50 !important;
    color: #ffffff !important;
}

.mijndns-ttl-cell {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.mijndns-actions-cell {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .mijndns-status-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mijndns-hero {
        padding: 30px 20px;
    }
    .mijndns-description-box {
        padding: 15px 20px;
    }
    .mijndns-domain-select-wrapper { 
        flex-direction: column; 
    }
    .mijndns-fetch-btn {
        width: 100%;
        justify-content: center;
    }
    .mijndns-action-buttons { 
        flex-direction: column; 
    }
    .mijndns-action-buttons .btn { 
        width: 100%; 
    }
    .mijndns-value-wrapper { 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .mijndns-value-text { 
        max-width: 200px; 
    }
    .mijndns-table {
        font-size: 13px;
    }
    .mijndns-table th,
    .mijndns-table td {
        padding: 10px 12px;
    }
    .mijndns-template-buttons {
        justify-content: stretch;
    }
    .mijndns-template-buttons .btn {
        flex: 1;
        min-width: calc(50% - 5px);
    }
    .mijndns-spf-buttons {
        justify-content: stretch;
    }
    .mijndns-spf-buttons .btn {
        flex: 1;
        min-width: calc(50% - 4px);
        font-size: 11px;
        padding: 4px 8px;
    }
    .mijndns-mx-buttons {
        justify-content: stretch;
    }
    .mijndns-mx-buttons .btn {
        flex: 1;
        min-width: calc(50% - 4px);
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Template Selector Styles */
.mijndns-template-selector {
    margin-bottom: 15px;
}

.mijndns-template-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.mijndns-template-buttons .btn {
    font-size: 13px;
    padding: 6px 12px;
    border-width: 2px;
}

.mijndns-template-buttons .btn-outline-primary {
    color: #3b7dd8;
    border-color: #3b7dd8;
    background: transparent;
}

.mijndns-template-buttons .btn-outline-primary:hover {
    background: #3b7dd8;
    color: white;
}

.mijndns-template-buttons .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    background: transparent;
}

.mijndns-template-buttons .btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
}

.mijndns-template-help {
    background: #e3f2fd;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #bbdefb;
    margin-bottom: 10px;
}

.mijndns-template-help .template-description {
    margin: 0;
    font-size: 13px;
    color: #1976d2;
    line-height: 1.5;
}

.mijndns-template-help small {
    display: block;
    margin-top: 5px;
    color: #0d47a1;
}

/* SPF Provider Buttons */
.mijndns-spf-providers {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #d0e5ff;
    margin-bottom: 15px;
}

.mijndns-spf-title {
    font-size: 13px;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 10px;
}

.mijndns-spf-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.mijndns-spf-buttons .btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
    background: transparent;
    font-size: 12px;
    padding: 5px 10px;
}

.mijndns-spf-buttons .btn-outline-info:hover {
    background: #17a2b8;
    color: white;
}

.mijndns-warning-yellow {
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
    margin-top: 10px;
    font-size: 12px;
    color: #856404;
}

.mijndns-warning-yellow i {
    color: #ff9800;
    margin-right: 5px;
}

.mijndns-spf-providers .mijndns-warning-yellow {
    margin-top: 10px;
    font-size: 12px;
}

/* Value Cell */
.mijndns-mx-templates {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #d0e5ff;
    margin-bottom: 20px;
}

.mijndns-mx-title {
    font-size: 13px;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 10px;
}

.mijndns-mx-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.mijndns-mx-buttons .btn-outline-primary {
    color: #3b7dd8;
    border-color: #3b7dd8;
    background: transparent;
    font-size: 12px;
    padding: 5px 10px;
}

.mijndns-mx-buttons .btn-outline-primary:hover {
    background: #3b7dd8;
    color: white;
}

.mijndns-mx-help {
    background: #e3f2fd;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #bbdefb;
    margin-top: 10px;
}

.mijndns-mx-help .mx-description {
    margin: 0;
    font-size: 13px;
    color: #1976d2;
    line-height: 1.5;
}

.mijndns-mx-help small {
    display: block;
    margin-top: 5px;
    color: #0d47a1;
}

.mijndns-form-header .mijndns-warning-yellow {
    margin-bottom: 0;
}

.mijndns-mx-warning {
    margin-top: 15px;
}

/* Checkbox Styles */
.mijndns-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
}

.mijndns-table th:first-child,
.mijndns-table td:first-child {
    text-align: center;
}

/* Bulk Actions */
.mijndns-bulk-actions {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    border-top: 2px solid #dee2e6;
    margin-top: -2px;
}

.mijndns-bulk-actions .btn {
    font-size: 14px;
}

.mijndns-bulk-actions #selectedCount {
    font-weight: 600;
}

.mijndns-bulk-actions p {
    margin-bottom: 0;
}

/* Domain Warning Styles */
.mijndns-domain-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.mijndns-domain-warning i {
    color: #ff9800;
    margin-right: 8px;
}

.mijndns-domain-warning strong {
    color: #e65100;
    font-family: 'SF Mono', Monaco, 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    background: rgba(255, 152, 0, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

.mijndns-domain-warning small {
    display: block;
    margin-top: 5px;
}

.mijndns-input-warning {
    border-color: #ff9800 !important;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15) !important;
}

/* Highlight effect */
.mijndns-highlight {
    animation: highlightPulse 1s ease-out;
}

@keyframes highlightPulse {
    0% {
        background-color: rgba(59, 125, 216, 0.2);
        box-shadow: 0 0 0 5px rgba(59, 125, 216, 0.2);
    }
    100% {
        background-color: transparent;
        box-shadow: 0 0 0 0 rgba(59, 125, 216, 0);
    }
}

/* Loading state for domain select */
.mijndns-domain-select.loading {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b7dd8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='12' cy='12' r='10' stroke-dasharray='31.4 31.4' transform='rotate(-90 12 12)'%3e%3canimate attributeName='stroke-dashoffset' values='0;62.8' dur='1s' repeatCount='indefinite'/%3e%3c/circle%3e%3c/svg%3e") !important;
    pointer-events: none;
    opacity: 0.7;
}

/* Loading overlay for section */
.mijndns-section.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Google MX Panel Styles - NIEUWE TOEVOEGING */
.mijndns-google-mx-panel {
    background: #ffffff;
    border: 2px solid #4285f4;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.mijndns-mx-instructions {
    margin-bottom: 25px;
}

.mijndns-mx-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.mijndns-mx-step.current {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6c757d;
    flex-shrink: 0;
}

.mijndns-mx-step.current .step-number {
    background: #4285f4;
    color: white;
}

.step-content {
    flex: 1;
}

.step-content p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.mijndns-mx-records-list {
    margin-bottom: 20px;
}

.mijndns-mx-record-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.mijndns-mx-record-display:hover {
    background: #e9ecef;
}

.mijndns-mx-record-display.active {
    background: #e8f0fe;
    border: 2px solid #4285f4;
    position: relative;
}

.record-status {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #4285f4;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mijndns-mx-record-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.mijndns-mx-priority {
    font-weight: 700;
    color: #1a2332;
    background: #e3f2fd;
    padding: 6px 12px;
    border-radius: 4px;
    min-width: 40px;
    text-align: center;
}

.mijndns-mx-server {
    font-family: 'SF Mono', Monaco, 'Consolas', monospace;
    color: #495057;
    font-size: 14px;
}

.mijndns-mx-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    background: #e9ecef;
    color: #6c757d;
}

.mijndns-mx-badge.primary {
    background: #4285f4;
    color: white;
}

.mijndns-mx-remaining-title {
    font-weight: 600;
    color: #495057;
    margin: 20px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy-mx {
    background: #ffffff;
    border: 1px solid #dee2e6;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #495057;
}

.btn-copy-mx:hover {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
}

.btn-copy-mx.copied {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.mijndns-mx-info {
    background: #e8f0fe;
    padding: 15px;
    border-radius: 6px;
    color: #1976d2;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.mijndns-mx-info i {
    flex-shrink: 0;
    margin-top: 2px;
}

.mijndns-mx-actions-simple {
    text-align: center;
}

/* Notification Styles - NIEUWE TOEVOEGING */
.mijndns-notification {
    background: #e8f0fe;
    border: 2px solid #4285f4;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mijndns-notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #1976d2;
    font-size: 16px;
}

.mijndns-remaining-records {
    background: white;
    border-radius: 6px;
    padding: 10px;
}

.mijndns-record-copy {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    border-bottom: 1px solid #e9ecef;
}

.mijndns-record-copy:last-child {
    border-bottom: none;
}

.mijndns-record-copy .priority {
    font-weight: 600;
    color: #495057;
    min-width: 100px;
}

.mijndns-record-copy .server {
    flex: 1;
    font-family: monospace;
    color: #212529;
}

.mijndns-record-copy .btn-copy {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.mijndns-record-copy .btn-copy:hover {
    background: #e9ecef;
}
/* Modern CSS Reset & Variables */
.page-toondomein {
    --primary: #3b7dd8;
    --primary-dark: #2968c8;
    --secondary: #fe8b35;
    --secondary-light: #ff9f5a;
    --dark: #1a1f2e;
    --gray-dark: #2c3e50;
    --gray: #6c757d;
    --gray-light: #e8ecef;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --success: #4CAF50;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-toondomein * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-toondomein {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: transparent;
    overflow-x: hidden;
    position: relative;
    min-height: calc(100vh - 200px);
}

/* Background Wrapper - Fixed voor hele viewport */
.page-toondomein .background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;  /* Van -1 naar -2 */
    overflow: hidden;
    pointer-events: none;
}

.page-toondomein .gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 125, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 139, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
    filter: blur(100px);
    animation: gradientShift 20s ease-in-out infinite;
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) calc(100% - 300px), 
        rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) calc(100% - 300px), 
        rgba(0,0,0,0) 100%);
}

/* Floating Elements - Dynamischer en interessanter */
.page-toondomein .floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px); /* Iets scherper voor meer definitie */
}

/* Verschillende animaties voor variatie */
@keyframes floatDynamic1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    20% { 
        transform: translate(-40px, -60px) scale(1.2) rotate(90deg);
    }
    40% { 
        transform: translate(60px, -20px) scale(0.8) rotate(180deg);
    }
    60% { 
        transform: translate(-20px, 40px) scale(1.1) rotate(270deg);
    }
    80% { 
        transform: translate(40px, 20px) scale(0.9) rotate(360deg);
    }
}

@keyframes floatDynamic2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    25% { 
        transform: translate(50px, -30px) scale(1.3);
    }
    50% { 
        transform: translate(-60px, -50px) scale(0.7);
    }
    75% { 
        transform: translate(30px, 60px) scale(1.15);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Bollen met verschillende animaties en gradiënten */
.page-toondomein .floating-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(59, 125, 216, 0.8), 
        rgba(59, 125, 216, 0.4) 50%, 
        rgba(59, 125, 216, 0.1));
    animation: floatDynamic1 18s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(59, 125, 216, 0.3);
}

.page-toondomein .floating-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle at 40% 40%, 
        rgba(254, 139, 53, 0.8), 
        rgba(254, 139, 53, 0.4) 50%, 
        rgba(254, 139, 53, 0.1));
    animation: floatDynamic2 22s ease-in-out infinite reverse;
    box-shadow: 0 0 50px rgba(254, 139, 53, 0.3);
}

.page-toondomein .floating-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(59, 125, 216, 0.7), 
        rgba(254, 139, 53, 0.3) 70%);
    animation: floatDynamic1 15s ease-in-out infinite;
    animation-delay: -5s;
}

.page-toondomein .floating-circle:nth-child(4) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle at 60% 60%, 
        rgba(254, 139, 53, 0.6), 
        rgba(254, 139, 53, 0.2));
    animation: 
        floatDynamic2 20s ease-in-out infinite,
        pulse 4s ease-in-out infinite;
    animation-delay: -10s;
}

.page-toondomein .floating-circle:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    background: linear-gradient(45deg, 
        rgba(59, 125, 216, 0.6), 
        rgba(254, 139, 53, 0.4));
    animation: floatDynamic1 25s ease-in-out infinite reverse;
    animation-delay: -15s;
}

.page-toondomein .floating-circle:nth-child(6) {
    width: 60px;
    height: 60px;
    bottom: 40%;
    right: 10%;
    background: radial-gradient(circle at 70% 70%, 
        rgba(59, 125, 216, 0.8), 
        rgba(59, 125, 216, 0.2));
    animation: 
        floatDynamic2 12s ease-in-out infinite,
        pulse 3s ease-in-out infinite;
    animation-delay: -7s;
}

/* Extra: morphing effect voor sommige bollen */
@keyframes morph {
    0%, 100% { border-radius: 50%; }
    33% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; }
    66% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
}

.page-toondomein .floating-circle:nth-child(2),
.page-toondomein .floating-circle:nth-child(4) {
    animation: 
        floatDynamic2 22s ease-in-out infinite,
        morph 8s ease-in-out infinite;
}


/* Main Container */
.page-toondomein .main-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
}

/* Hero Section */
.page-toondomein .hero-section {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.page-toondomein .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 125, 216, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-toondomein .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-toondomein .hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-toondomein .hero-description {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.page-toondomein .hero-subdescription {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Search Card */
.page-toondomein .search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.page-toondomein .search-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.page-toondomein .search-instruction {
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.page-toondomein .search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-toondomein .input-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.page-toondomein .search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    background: var(--white);
    transition: var(--transition);
}

.page-toondomein .search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 125, 216, 0.1);
    transform: translateY(-2px);
}

.page-toondomein .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.page-toondomein .search-button {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.page-toondomein .search-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.page-toondomein .search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 125, 216, 0.3);
}

.page-toondomein .search-button:hover::before {
    left: 100%;
}

/* Domain Registration CTA */
.page-toondomein .domain-cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(254, 139, 53, 0.3);
}

.page-toondomein .domain-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite reverse;
}

.page-toondomein .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-toondomein .cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.page-toondomein .cta-form {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.page-toondomein .cta-input-group {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.page-toondomein .cta-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    background: var(--white);
    color: var(--gray-dark);
}

.page-toondomein .cta-button {
    padding: 1rem 2rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.page-toondomein .cta-button:hover {
    background: #0f1419;
    transform: translateY(-2px);
}

.page-toondomein .cta-subtext {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Results Section */
.page-toondomein .results-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-toondomein .results-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.page-toondomein .results-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
    font-weight: 600;
}

.page-toondomein .domain-highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Modern Table */
.page-toondomein .data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.page-toondomein .data-row {
    transition: var(--transition);
}

.page-toondomein .data-row:hover {
    background: rgba(59, 125, 216, 0.03);
}

.page-toondomein .data-label {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--gray);
    width: 35%;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid var(--gray-light);
    background: rgba(248, 249, 250, 0.5);
}

.page-toondomein .data-value {
    padding: 1.5rem;
    color: var(--gray-dark);
    font-weight: 500;
    word-break: break-word;
}

/* Info Section */
.page-toondomein .info-section {
    margin-top: 4rem;
}

.page-toondomein .info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-toondomein .info-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.page-toondomein .info-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-toondomein .info-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.page-toondomein .info-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-toondomein .info-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-toondomein .info-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.page-toondomein .info-content li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
    line-height: 1.7;
}

.page-toondomein .info-content li:last-child {
    border-bottom: none;
}

.page-toondomein .info-content strong {
    color: var(--dark);
    font-weight: 600;
}

/* Additional Info Box */
.page-toondomein .info-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 125, 216, 0.1);
    margin-top: 2rem;
}

.page-toondomein .info-box-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-toondomein .info-box-text {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* Loading Animation */
.page-toondomein .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-toondomein .hero-section {
        padding: 2rem 1rem;
    }

    .page-toondomein .search-form {
        flex-direction: column;
    }

    .page-toondomein .input-wrapper {
        width: 100%;
        min-width: auto;
    }

    .page-toondomein .search-button {
        width: 100%;
        justify-content: center;
    }

    .page-toondomein .search-card,
    .page-toondomein .results-card,
    .page-toondomein .info-content {
        padding: 2rem 1.5rem;
    }

    .page-toondomein .data-label,
    .page-toondomein .data-value {
        display: block;
        width: 100%;
        border-right: none;
    }

    .page-toondomein .data-label {
        padding-bottom: 0.5rem;
    }

    .page-toondomein .data-value {
        padding-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .page-toondomein .cta-input-group {
        flex-direction: column;
    }

    .page-toondomein .cta-button {
        width: 100%;
    }

    .page-toondomein .info-title {
        font-size: 2rem;
    }
}

.providerLinkingFeedback {
    display: none !important;
}
.site-cms-ai-wordpress-hosting .btn-lg {
    border-radius: 20px !important;
}
.clientAlert.alert-christmas-sale {
    background: linear-gradient(270deg, #00643a, #005330);
    border: none;
}
.alert-christmas-sale .btn-primary {
    background-color: #fe8b35 !important;
    border-color: #fe8b35 !important;
}
.site-cms-ai-wordpress-hosting {
--cms-color-on-dark: #000;
}

.aihelp img {
    max-width: 80px;
}

.site-cms-ai-wordpress-hosting .price-discount {
--cms-color-on-dark-2: #d92632;
}
.site-cms-ai-wordpress-hosting .label.label-save {
    background: #25a75b;
    color: #fff;
}
.wo-newsletter-signup {
  max-width: 500px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,44,100,0.06);
  padding: 32px 24px 20px 24px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.wo-label {
  font-size: 1.1rem;
  color: #12203a;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.wo-input-group {
  display: flex;
  margin-top: 8px;
}

.wo-input {
  flex: 1 1 auto;
  border: 1.5px solid #d1e2fa;
  border-radius: 12px 0 0 12px;
  padding: 12px 16px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

.wo-input:focus {
  border-color: #1769ff;
  box-shadow: 0 0 0 2px #e6efff;
}

.wo-btn {
  background: #1769ff;
  color: #fff;
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 0 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 2px 8px rgba(23,105,255,0.07);
}

.wo-btn:hover, .wo-btn:focus {
  background: #184db1;
}

.wo-small {
  color: #8892b0;
  font-size: 0.92rem;
  margin-top: 10px;
  text-align: center;
}
.sectionbrowser {
    margin-top: -280px;
    z-index: 1 !important;
    position: relative;
}
.site-cms-webhosting .swiper-slide .package-compare .compare-item[data-compare-item-1] .compare-item-text {
    font-size: 30px;
}
.site-cms-ai-wordpress-hosting .swiper-slide .package-compare .compare-item[data-compare-item-1] .compare-item-text {
    font-size: 30px;
}
.page-clientareadomaindetails .alert.alert-primary {
  display:none !important;
}
.eigen-menu-icons {
   --app-nav-top-menu-dropdown-icon-size: 80px;
}
/* WebOké Email Verhuistool - Complete CSS */

.emailverhuizen {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header styling */
.emailverhuizen .title_lg {
  margin-bottom: 30px;
}

.emailverhuizen .title_lg_style {
  color: #1a4789;
  font-weight: 600;
}

/* Verbeterde stappen indicator */
.emailverhuizen .email-migration-steps {
  margin: 30px 0;
  position: relative;
}

.emailverhuizen .progress {
  height: 6px;
  margin-bottom: 0;
  background-color: #e0e5ec;
  border-radius: 3px;
  box-shadow: none;
}

.emailverhuizen .progress-bar {
  background-color: #4CAF50;
  border-radius: 3px;
}

.emailverhuizen .step-indicators {
  display: flex;
  justify-content: space-between;
  margin-top: -12px;
}

.emailverhuizen .step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.emailverhuizen .step-circle {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: #e0e5ec;
  color: #555;
  font-weight: bold;
  margin: 0 auto 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 2px solid white;
}

.emailverhuizen .step.active .step-circle {
  background-color: #4CAF50;
  color: white;
  box-shadow: 0 2px 5px rgba(76,175,80,0.3);
}

.emailverhuizen .step.completed .step-circle {
  background-color: #4CAF50;
  color: white;
}

.emailverhuizen .step-label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

/* Intro paneel styling */
.emailverhuizen .section-subtitle {
  background-color: white;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 30px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  border: 1px solid #e0e5ec;
}

.emailverhuizen .section-subtitle-text {
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* "Klik hier om te lezen" knop styling */
.emailverhuizen .section-subtitle a.btn-primary {
  background-color: #1a4789;
  border-color: #1a4789;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.emailverhuizen .section-subtitle a.btn-primary:hover {
  background-color: #143a6f;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Formulier container */
.emailverhuizen .panel-form {
  border-radius: 8px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  border: 1px solid #e0e5ec;
  overflow: hidden;
  margin-bottom: 30px;
}

.emailverhuizen .panel-body {
  padding: 25px;
}

/* Formulier titel */
.emailverhuizen h3 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Brongegevens en Doelgegevens styling */
.emailverhuizen .col-sm-6:first-child {
  position: relative;
}

.emailverhuizen .col-sm-6:first-child:before {
  content: "Brongegevens";
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1a4789;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a4789;
}

.emailverhuizen .col-sm-6:last-child:before {
  content: "Doelgegevens";
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4CAF50;
}

/* Formulier velden styling */
.emailverhuizen .form-group {
  margin-bottom: 20px;
}

.emailverhuizen .control-label {
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}

.emailverhuizen .form-control {
  height: 42px;
  padding: 8px 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.emailverhuizen .form-control:focus {
  border-color: #1a4789;
  box-shadow: 0 0 0 3px rgba(26,71,137,0.1);
}

/* SSL/TLS selectiebox styling */
.emailverhuizen select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px;
}

/* Submit button styling */
.emailverhuizen .text-center .btn-primary {
  background-color: #4CAF50;
  border-color: #4CAF50;
  border-radius: 30px;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(76,175,80,0.2);
  transition: all 0.2s ease;
  margin-top: 20px;
}

.emailverhuizen .text-center .btn-primary:hover {
  background-color: #3d8b40;
  box-shadow: 0 4px 12px rgba(76,175,80,0.3);
  transform: translateY(-1px);
}

/* Panel styling voor result & error panels */
.emailverhuizen .panel-success {
  border-color: #4CAF50;
  border-radius: 6px;
  margin-bottom: 25px;
  box-shadow: 0 1px 5px rgba(76, 175, 80, 0.15);
}

.emailverhuizen .panel-success .panel-heading {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: white;
  padding: 15px 20px;
  border-radius: 5px 5px 0 0;
}

.emailverhuizen .panel-success .panel-title {
  font-size: 18px;
  font-weight: 600;
}

.emailverhuizen .panel-success .panel-title i {
  margin-right: 10px;
}

/* Panel styling voor foutmeldingen */
.emailverhuizen .panel-danger {
  border-color: #e74c3c;
  border-radius: 6px;
  margin-bottom: 25px;
  box-shadow: 0 1px 5px rgba(231, 76, 60, 0.15);
}

.emailverhuizen .panel-danger .panel-heading {
  background-color: #e74c3c;
  border-color: #e74c3c;
  color: white;
  padding: 15px 20px;
  border-radius: 5px 5px 0 0;
}

.emailverhuizen .panel-danger .panel-title {
  font-size: 18px;
  font-weight: 600;
}

.emailverhuizen .panel-danger .panel-title i {
  margin-right: 10px;
}

.emailverhuizen .panel-heading {
  padding: 12px 15px;
}

.emailverhuizen .panel-body {
  padding: 20px;
}

/* Result Message Styling */
.emailverhuizen .result-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* Resultaatbericht styling (het groene blok) */
.emailverhuizen .result-message.success {
  background-color: #f0f9f0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 25px;
  border-left: 5px solid #4CAF50;
}

/* Verbeterde styling voor het succespictogram */
.emailverhuizen .result-message.success .result-icon {
  font-size: 38px;
  color: #4CAF50;
  margin-right: 20px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Foutmelding styling */
.emailverhuizen .result-message.error {
  padding: 5px 0;
}

.emailverhuizen .result-message.error .result-icon {
  font-size: 36px;
  color: #e74c3c;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

/* Hoofdmelding in het succesblok */
.emailverhuizen .result-message.success .result-content h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.emailverhuizen .result-message.success .result-content p {
  color: #444;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 15px;
}

.emailverhuizen .result-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
}

.emailverhuizen .result-message.error .result-content h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.emailverhuizen .result-content p {
  margin-bottom: 10px;
}

/* Statistische informatie over kopiëren */
.emailverhuizen .stats-container {
  background-color: #f5f7fa;
  border-radius: 6px;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #e0e5ec;
}

.emailverhuizen .stats-item {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}

.emailverhuizen .stats-item:last-child {
  margin-bottom: 0;
}

.emailverhuizen .stats-item strong {
  color: #1a4789;
  margin-right: 10px;
  min-width: 120px;
  display: inline-block;
}

/* Error details styling */
.emailverhuizen .error-details {
  background-color: #fff5f5;
  border-radius: 6px;
  padding: 20px 25px;
  margin-top: 20px;
  border-left: 5px solid #e74c3c;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.emailverhuizen .error-cause {
  margin-bottom: 10px;
  color: #e74c3c;
  font-weight: 600;
  font-size: 16px;
}

.emailverhuizen .error-explanation {
  color: #444;
  line-height: 1.6;
  font-size: 15px;
}

/* Migration Details */
.emailverhuizen .migration-details {
  background-color: #f5f7fa;
  border-radius: 6px;
  padding: 20px;
  margin-top: 15px;
  border: 1px solid #eee;
}

.emailverhuizen .migration-details p {
  margin-bottom: 10px;
  color: #444;
}

.emailverhuizen .migration-details p strong {
  color: #1a4789;
  min-width: 80px;
  display: inline-block;
}

/* Processing Animation */
.emailverhuizen .refresh-notice {
  margin-top: 25px;
  color: #666;
  text-align: center;
}

.emailverhuizen .loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #1a4789;
  width: 40px;
  height: 40px;
  margin: 15px auto;
  animation: emailverhuizen-spin 2s linear infinite;
}

/* Log Toggle en Container */
.emailverhuizen .log-toggle {
  margin: 25px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.emailverhuizen .log-toggle .btn {
  padding: 8px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: #f5f7fa;
  border-color: #ddd;
  color: #ffffff;
  transition: all 0.2s ease;
}

.emailverhuizen .log-toggle .btn:hover {
  background-color: #e9ecef;
  border-color: #ccc;
}

.emailverhuizen .log-toggle .btn i {
  margin-right: 8px;
}

.emailverhuizen .log-container {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
}

.emailverhuizen .log-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
  font-size: 18px;
}

.emailverhuizen .log-title i {
  margin-right: 8px;
  color: #1a4789;
}

.emailverhuizen .log-entry {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  padding: 10px !important;
  white-space: pre-wrap;
  word-break: break-word;
  border-bottom: 1px solid #eee;
}

.emailverhuizen .log-error {
  color: #e74c3c;
  background-color: #fff5f5;
}

.emailverhuizen .log-success {
  color: #4CAF50;
  background-color: #f5fbf5;
}

.emailverhuizen .log-completion-message {
  padding: 15px !important;
  background-color: #f5f7fa;
  border-top: 1px solid #ddd;
  font-weight: 500;
}

/* Action Buttons voor migratie acties */
.emailverhuizen .migration-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.emailverhuizen .migration-actions a {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emailverhuizen .migration-actions a.btn-default {
  background-color: #f5f7fa;
  border-color: #ddd;
  color: #ffffff;
}

.emailverhuizen .migration-actions a.btn-default:hover {
  background-color: #e9ecef;
  border-color: #ccc;
}

.emailverhuizen .migration-actions a.btn-primary {
  background-color: #1a4789;
  border-color: #1a4789;
}

.emailverhuizen .migration-actions a.btn-primary:hover {
  background-color: #143a6f;
}

.emailverhuizen .migration-actions a i {
  margin-right: 8px;
}

/* Animation */
@keyframes emailverhuizen-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .emailverhuizen .panel-body {
    padding: 15px;
  }
  
  .emailverhuizen .result-message {
    flex-direction: column;
  }
  
  .emailverhuizen .result-icon {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }
  
  .emailverhuizen .result-message.error {
    flex-direction: row; /* Behoud de horizontale layout ook op mobiel */
    align-items: flex-start;
  }
  
  .emailverhuizen .error-details {
    padding: 15px;
  }
  
  .emailverhuizen .stats-item {
    flex-direction: column;
  }
  
  .emailverhuizen .stats-item strong {
    margin-bottom: 5px;
  }
  
  .emailverhuizen .migration-actions {
    flex-direction: column;
  }
  
  .emailverhuizen .migration-actions a {
    margin-bottom: 10px;
    width: 100%;
  }
}
.site-cms- .banner-primary .container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-bottom: -100px;
    margin-top: -100px;
}

.site-cms- .banner-background .banner-graphic img {
    width: 430px !important;
}
.site-cms-wordpress-hosting .banner-background .banner-graphic img {
    width: 450px !important;
}
.site-cms-emailpakket .section-graphic img {
    max-width: 450px !important;
}
.site-cms-emailpakket .banner-background .banner-graphic img {
    width: 400px !important;
}
.site-cms-webhosting .site-banner.banner.banner-custom-graphic .banner-background .banner-graphic {
    width: 400px !important;
}
.verhuisicon .feature-icon {
    width: 100px;
    align-self: center;
}
.eigenicons .feature-icon {
    width: 120px !important;
    align-self: center !important;
}

    .discount-notice {
        display: flex;
        align-items: center;
        background-color: #4CAF50;
        color: white;
        padding: 8px 15px;
        border-radius: 30px;
        margin: 15px 0;
        font-size: 14px;
        font-weight: 500;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        text-align: center;
        justify-content: center;
    }
    
    .discount-notice-icon {
        margin-right: 8px;
    }

#whatsappLink {
    z-index: 9999;
  }

}
.sitebuilderpakket {
    font-size: 17px;
}
.site-cms-overons .site-banner.banner.banner-custom-graphic .banner-background .banner-graphic img {
    width: 70%;
}
.page-clientareaproducts .da-knop {
        background-color: #00000000;
        border: none;
}

/* Container: iets groter voor langer lint */
.most-chosen-ribbon {
  width: 150px;  /* voorheen 120px */
  height: 150px; /* idem */
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
}
.package.package-compare.is-boxed.package-sm.webhosttwo.package-graphic {
    border: 6px solid #ff9801;
    border-radius: 10px;
}
.most-chosen-ribbon span {
    position: absolute;
    display: block;
    width: 195px;
    padding: 10px 0;
    background-color: #1a4797;
    color: #fff;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 33px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobielaanpassingen: evt. ook breder maken */
@media (max-width: 768px) {
  .most-chosen-ribbon {
    width: 110px; /* iets groter dan de 90px */
    height: 110px;
  }
  .most-chosen-ribbon span {
    width: 150px; /* iets groter dan de 130px */
    top: 25px;
    right: -40px;
    font-size: 0.9rem;
  }
}

/* Eventueel kun je de afmetingen aanpassen voor mobiel via media queries */
@media (max-width: 768px) {
  .most-chosen-ribbon {
    width: 90px;
    height: 90px;
  }
  .most-chosen-ribbon span {
    width: 130px;
    top: 20px;
    right: -30px;
    font-size: 0.9rem;
  }
}

/* Algemene stijlregels voor de DNSSEC-pagina */
.page-dnssecdane body {
    font-family: 'Ubuntu', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.page-dnssecdane .title-section {
    text-align: center;
    margin: 20px 0;
}

.page-dnssecdane .title-lg {
    font-size: 2.5rem;
    color: #fe8b35;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-dnssecdane .alert {
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #eaf4fc;
    border-left: 5px solid #007bff;
    color: #004085;
}

.page-dnssecdane .section {
    margin: 20px auto;
    max-width: 800px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.page-dnssecdane .section-body {
    padding: 20px;
}

.page-dnssecdane .table-container {
    margin: 20px 0;
    overflow-x: auto;
}

.page-dnssecdane .table-list {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.page-dnssecdane .table-list th {
    background-color: #eaf4fc;
    color: #004085;
    text-align: left;
    padding: 12px;
    font-size: 1rem;
}

.page-dnssecdane .table-list td {
    text-align: left;
    padding: 12px;
    border-top: 1px solid #ddd;
    font-size: 0.95rem;
    color: #555;
}

/* Dropdown menu en knoppen */
.page-dnssecdane .form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.page-dnssecdane .form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
}

.page-dnssecdane .form-group .form-control.domain-select {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-dnssecdane .form-group .form-control.domain-select:focus {
    border-color: #fe8b35;
    box-shadow: 0 0 4px rgba(254, 139, 53, 0.5);
    outline: none;
}

.page-dnssecdane .button-group {
    display: flex;
    gap: 10px;
}

.page-dnssecdane .button-group .btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #fe8b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-dnssecdane .button-group .btn:hover {
    background-color: #e07830;
}

/* Kopieerknoppen en tekstgebieden */
.page-dnssecdane textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    background-color: #f9f9f9;
}

.page-dnssecdane textarea[readonly] {
    background-color: #f1f1f1;
    cursor: not-allowed;
}

/* Responsieve aanpassingen */
@media (max-width: 768px) {
    .page-dnssecdane .section {
        padding: 10px;
    }

    .page-dnssecdane .table-list th,
    .page-dnssecdane .table-list td {
        font-size: 0.9rem;
    }

    .page-dnssecdane .form-group {
        gap: 10px;
    }

    .page-dnssecdane .button-group {
        flex-direction: column;
        gap: 5px;
    }

    .page-dnssecdane .button-group .btn {
        width: 100%;
    }
}
.site-section.section-primary.frontpage {
    padding-bottom: 20px !important;
}
.alert-christmas-sale .btn-primary {
    background-color: #9d1f1f;
    border-color: #9d1f1f;
}
.page-doorsturingen .alert-info {
    background-color: #fe8b35 !important;
    color: #fff !important;
    padding: 10px !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
    max-width: 1250px;
}
.alert-christmas-sale p {
    font-size: 18px;
}
.page-doorsturingen .alert .alert-success {
    background-color: #dff0d8 !important;
    color: #3c763d !important;
    padding: 10px !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
}

.page-doorsturingen .alert .alert-danger {
    background-color: #f2dede !important;
    color: #a94442 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
}
.page-doorsturingen .table-container {
    background-color: #ffffff;
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin: 20px 0;
    overflow: hidden;
}
.page-doorsturingen .add-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #eef4ff;
}

.page-doorsturingen .page-doorsturingen-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Zorgt ervoor dat de kolommen evenredig worden verdeeld */
}

.page-doorsturingen .page-doorsturingen-table th {
    background-color: #eef4ff;
    color: #0056b3;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid #007bff;
    width: auto; /* Maakt zeker dat de kolommen dynamisch worden geschaald */
}

.page-doorsturingen .page-doorsturingen-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.page-doorsturingen .page-doorsturingen-table tr:hover {
    background-color: #f9f9f9;
}

.page-doorsturingen .action-button {
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.page-doorsturingen .delete-button {
    background-color: #ff4d4d;
    color: #ffffff;
}

.page-doorsturingen .delete-button:hover {
    background-color: #e63946;
}

.page-doorsturingen .add-button {
    background-color: #28a745;
    color: #ffffff;
}

.page-doorsturingen .add-button:hover {
    background-color: #218838;
}

.page-doorsturingen .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.page-doorsturingen .form-select {
    flex: 1;
    padding: 12px;
    border: 1px solid #007bff;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-doorsturingen .btn-submit {
    padding: 12px 18px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-doorsturingen .btn-submit:hover {
    background-color: #0056b3;
}

.page-doorsturingen .form-container {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin: 20px 0;
}

.page-doorsturingen .form-heading {
    font-size: 20px;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 15px;
    text-align: left;
}

.page-doorsturingen .dropdown-container {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #eef4ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-doorsturingen .page-intro {
    background-color: #eef4ff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    text-align: center;
}

.page-doorsturingen .intro-heading {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 10px;
}

.page-doorsturingen .intro-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.page-doorsturingen .page-doorsturingen-table td:last-child {
    text-align: right;
}

@media (max-width: 991px) {
    .duurzaam {
        display: none;
}
    .top-nav .fas {
    color: #1d65af !important;
}
}


.page-clientareahome .panel-client-details strong {
    color: #fe8b35 !important;
}
.page-clientareahome .panel-sidebar.panel-sidebar-primary {
    background: linear-gradient(90deg, #152a80, #1d65af) !important;
    color: #fff;
    font-size: 15px;
}
.page-clientareahome .panel-client-details text {
    color: #fff !important;
}
.page-appmanager .table-container {
    width: 100% !important;
}
span.duurzaam-text {
    color: #fff;
    font-size: 20px;
}
.directadmin img.ls-is-cached.lazyloaded {
    min-width: 150% !important;
}
.site-cms- .trustpilot-container {
    background: #f7f8fa;
    padding-top: 50px;
    padding-bottom: 50px;
}
.hostingtabel img.ls-is-cached.lazyloaded {
    max-width: 110% !important;
}

.site-cms-resellerhosting .trustpilot-container {
    background: #f7f8fa;
    padding-top: 50px;
    padding-bottom: 50px;
}

.banner-caption {
    color: #fe8b35 !important;
}
.raket {
    width: 25px;
}
.site-cms-emailpakket .package-horizontal .package-features>li:after {
    display: none !important;
}
ul.package-features.package-features-lg {
    text-align: left;
}

.site-cms-webhosting .trustpilot-container {
    background: #f7f8fa;
    padding-top: 0px;
    padding-bottom: 0px;
}
.site-cms-emailpakket .trustpilot-container {
    background: #f7f8fa;
    padding-top: 0px;
    padding-bottom: 0px;
}
.site-cms-overons .trustpilot-container {
    background: #f7f8fa;
    padding-top: 0px;
    padding-bottom: 0px;
}


.duurzaam .item-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}
/*.banner-search-domain {
    border: 2px solid #fe8b35;
    border-radius: 8px;
}*/
.duurzaam i.fas.fa-test.fas {
    color: #0da42e;
    font-size: 22px;
}



.app-nav-header  { 
    background: linear-gradient(90deg, #152a80, #1d65af); 
    padding-top: 10px;
}
.lagom-layout-top .app-nav-menu {
        border-bottom: 3px solid #fe8b35;
}

.banner-body {
        margin-top: -20px;
}

.domeintabel img.ls-is-cached.lazyloaded {
    min-width: 130%;
}

/*begin tabel
.tableStyle .table-bordered {
    border: 7px solid #ef7a25 !important;
    border-radius: 18px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.12), 0px 8px 32px rgba(0, 0, 0, 0.08);
}
.table>thead:first-child>tr:first-child>th {
    border-top: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}
.table>thead:first-child>tr:first-child>th {
    border-top: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}
.table>thead:first-child>tr:first-child>th {
    border-top: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}
.table>thead:first-child>tr:first-child>th {
    border-top: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}
.table>thead:first-child>tr:first-child>th {
    border-top: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}
.tableStyle tr td:nth-child(1) {
   background-color: #162a80;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    min-width: 300px;
}
.tableStyle {
        width: 70%;
        display: inline-table;
}
.tableStyle tr td:nth-child(3) {
    background-color: #fff;
    color: #fff;
    font-size: 18px;
}

.tableStyle tr td:nth-child(4) {
    background-color: #f4f6f8;
    color: #fff;
    font-size: 18px;
}

.tableStyle tr td:nth-child(6) {
    background-color: #f4f6f8;
    color: #fff;
    font-size: 18px;
}

.tableStyle tr td:nth-child(7) {
    background-color: #fff;
    color: #fff;
    font-size: 18px;
}
.tableStyle tr td:nth-child(4,6) {
    background-color: rgba(240, 120, 29, 0.1);
    color: #fff;
    font-size: 18px;
}
.tableStyle tr th:nth-child(2) {
   background-color: #fe8b35;
}
.tableStyle tr th:nth-child(3) {
   background-color: #fff;
}
.tableStyle tr th:nth-child(5) {
   background-color: #fff;
}
.tableStyle tr th:nth-child(7) {
   background-color: #162a80;
}
.tableStyle tr td:nth-child(3) {
    background-color: #fff;
    color: #000;
}
.tableStyle tr td:nth-child(4) {
    background-color: #f4f6f8;
    color: #000;
}
.tableStyle tr td:nth-child(6) {
    background-color: #f4f6f8;
    color: #000;
}
.tableStyle tr td:nth-child(5) {
    background-color: #fff;
    color: #000;
    font-size: 18px;
}
.tableStyle tr td:nth-child(7) {
    background-color: #fff;
    color: #000;
}
.tableStyle tr td:nth-child(4,6) {
    background-color: rgba(240, 120, 29, 0.1);
    color: #fff;
}
.tableStyle tr th:nth-child(2) {
   background-color: #ef7a24;
}
.tableStyle tr th:nth-child(3) {
   background-color: #162a80;
}
.tableStyle tr th:nth-child(5) {
   background-color: #162a80;
}
.tableStyle table>thead>tr>th {
  background-color: #162a80;
}
.tableStyle th {
  width: 120px;
  color: #fff
  font-size: 22px;
}

.tableStyle tr td:nth-child(2) {
   background-color: #ef7a24;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
}
einde tabel*/
/*begin footer*/

.footerContent h4 {
    color: #fe8b35;
    font-size: 30px;
    font-weight: 500;
}
.gradientBg {
    color: #fff;
}
.dFlex {
    display: flex;
}
.dFlex .copyright {
    display: flex;
    flex: 1;
}
.socilLinks>ul>li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}
.footerContent {
    width: 100%;
}
.footerTopCol {
    padding: 30px 0;
    font-size: 16px;
}
.footerLeftCol {
    max-width: 330px;
}

.footerBtmCol {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}
.footerContent a {
    color: #fff !important;
}
.main-footer {
    border-top: 1px solid #ffffff00;
}


#webhosters-widget[class*=layout-inline] {
    display: block !important;
    font-family: ubuntu;
    font-size: 150%;
    width: 100%;
    margin-top: 20px;
}

.main-footer {
    border-top: 3px solid #fe8b35;
}
/*einde footer*/
