.xitens-wp-domain-browser,
.xitens-wp-domain-browser * {
    box-sizing: border-box;
}

.domeinnaamregistratie-table-con > .wrapper {
    width: calc(100% - 30px) !important;
    max-width: 1520px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.xitens-wp-domain-browser {
    --xitens-orange: #ef6c00;
    --xitens-orange-light: #ff8a00;
    --xitens-dark: #2b2b2b;
    --xitens-border: #dedede;
    --xitens-muted: #9c9f9f;
    width: 100%;
    color: #171717;
    font-family: inherit;
}

.xitens-wp-domain-browser [hidden] {
    display: none !important;
}

.xitens-dp-loading,
.xitens-dp-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 150px;
    padding: 28px;
    border: 1px solid var(--xitens-border);
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.xitens-dp-error {
    flex-direction: column;
}

.xitens-dp-error p {
    margin: 0;
}

.xitens-dp-error a {
    color: var(--xitens-orange);
    font-weight: 700;
}

.xitens-dp-spinner {
    width: 25px;
    height: 25px;
    border: 3px solid #ececec;
    border-top-color: var(--xitens-orange);
    border-radius: 50%;
    animation: xitens-dp-spin .75s linear infinite;
}

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

.xitens-dp-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.xitens-dp-filter {
    min-height: 32px;
    margin: 0;
    padding: 6px 14px;
    border: 1px solid #d7d7d7;
    border-radius: 18px;
    background: #fff;
    color: #222;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.xitens-dp-filter:hover,
.xitens-dp-filter:focus-visible {
    border-color: var(--xitens-orange);
    outline: none;
}

.xitens-dp-filter.is-active {
    border-color: var(--xitens-orange);
    background: linear-gradient(135deg, var(--xitens-orange), var(--xitens-orange-light));
    color: #fff;
    box-shadow: none;
}

.xitens-dp-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid var(--xitens-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
}

.xitens-dp-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(560px, 70%);
    margin: 0;
}

.xitens-dp-search-icon {
    position: absolute;
    left: 17px;
    width: 14px;
    height: 14px;
    border: 2px solid #9ca3aa;
    border-radius: 50%;
    pointer-events: none;
}

.xitens-dp-search-icon::after {
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 6px;
    height: 2px;
    border-radius: 1px;
    background: #9ca3aa;
    content: '';
    transform: rotate(45deg);
}

.xitens-dp-search input[type="search"] {
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 0 18px 0 44px;
    border: 1px solid #d5d5d5;
    border-radius: 24px;
    background: #fff;
    color: #333;
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 46px;
    box-shadow: none;
    appearance: none;
}

.xitens-dp-search input[type="search"]::placeholder {
    color: #6f7d8e;
    font-weight: 400 !important;
    opacity: 1;
}

.xitens-dp-search input[type="search"]:focus {
    border-color: var(--xitens-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 108, 0, .12);
}

.xitens-dp-result-count {
    flex: 0 0 auto;
    color: var(--xitens-muted);
    font-size: 13px;
    white-space: nowrap;
}

.xitens-dp-table {
    overflow: hidden;
    border: 1px solid var(--xitens-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
}

.xitens-dp-table-head,
.xitens-dp-row {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr) .9fr;
    align-items: stretch;
}

.xitens-dp-table-head {
    min-height: 60px;
    border-bottom: 3px solid var(--xitens-orange);
    background: var(--xitens-dark);
    color: #fff;
}

.xitens-dp-table-head > span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.xitens-dp-row {
    min-height: 75px;
    border-bottom: 1px solid #e3e3e3;
    background: #fff;
}

.xitens-dp-row:last-child {
    border-bottom: 0;
}

.xitens-dp-row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 12px 14px;
    border-right: 1px solid #e7e7e7;
    text-align: center;
}

.xitens-dp-row > div:last-child {
    border-right: 0;
}

.xitens-dp-row .xitens-dp-tld {
    justify-content: flex-start;
    padding-left: 24px;
}

.xitens-dp-tld strong {
    font-size: 16px;
}

.xitens-dp-price {
    flex-direction: column;
    gap: 2px;
}

.xitens-dp-price strong {
    font-size: 15px;
    font-weight: 500;
}

.xitens-dp-price small {
    color: var(--xitens-muted);
    font-size: 11px;
    line-height: 1.3;
}

.xitens-dp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 17px;
    border: 1px solid var(--xitens-orange);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--xitens-orange), var(--xitens-orange-light));
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none !important;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(239, 108, 0, .17);
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.xitens-dp-cta:hover,
.xitens-dp-cta:focus-visible {
    color: #fff !important;
    outline: none;
    box-shadow: 0 10px 22px rgba(239, 108, 0, .28);
    transform: translateY(-1px);
}

.xitens-dp-empty {
    margin: 0;
    padding: 34px 20px;
    color: var(--xitens-muted);
    text-align: center;
}

.xitens-dp-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding: 12px 14px;
    border: 1px solid var(--xitens-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .04);
}

.xitens-dp-page-size {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #555;
    font-size: 13px;
    font-weight: 400;
}

.xitens-dp-page-size select {
    width: 76px;
    min-width: 76px;
    height: 40px;
    margin: 0;
    padding: 0 28px 0 12px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font: inherit;
    line-height: 40px;
}

.xitens-dp-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.xitens-dp-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    background: #fff;
    color: #222;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.xitens-dp-page:hover:not(:disabled),
.xitens-dp-page:focus-visible {
    border-color: var(--xitens-orange);
    outline: none;
}

.xitens-dp-page.is-current {
    border-color: #f4b27d;
    background: #fff3e8;
    color: var(--xitens-orange);
}

.xitens-dp-page:disabled {
    color: #b8b8b8;
    cursor: not-allowed;
    opacity: .75;
}

.xitens-dp-previous,
.xitens-dp-next {
    min-width: 82px;
}

@media (max-width: 767px) {
    .xitens-dp-filters {
        flex-wrap: nowrap;
        margin-right: -15px;
        padding-right: 15px;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .xitens-dp-filter {
        flex: 0 0 auto;
    }

    .xitens-dp-tools {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .xitens-dp-search {
        width: 100%;
    }

    .xitens-dp-result-count {
        padding: 0 4px;
        text-align: right;
    }

    .xitens-dp-table {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .xitens-dp-table-head {
        display: none;
    }

    .xitens-dp-rows {
        display: grid;
        gap: 12px;
    }

    .xitens-dp-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 0;
        overflow: hidden;
        border: 1px solid var(--xitens-border);
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    }

    .xitens-dp-row > div {
        border-right: 1px solid #e7e7e7;
    }

    .xitens-dp-row .xitens-dp-tld {
        grid-column: 1 / -1;
        justify-content: center;
        padding: 13px 14px;
        border-right: 0;
        border-bottom: 2px solid var(--xitens-orange);
        background: var(--xitens-dark);
        color: #fff;
    }

    .xitens-dp-price {
        min-height: 91px;
        padding: 12px 7px !important;
    }

    .xitens-dp-price::before {
        min-height: 30px;
        color: #777;
        content: attr(data-label);
        font-size: 10px;
        font-weight: 600;
        line-height: 1.25;
    }

    .xitens-dp-price:nth-child(4) {
        border-right: 0;
    }

    .xitens-dp-price strong {
        font-size: 14px;
    }

    .xitens-dp-action {
        grid-column: 1 / -1;
        padding: 12px !important;
        border-top: 1px solid #e7e7e7;
        border-right: 0 !important;
    }

    .xitens-dp-cta {
        width: 100%;
        min-height: 42px;
    }

    .xitens-dp-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .xitens-dp-page-size {
        justify-content: center;
    }

    .xitens-dp-pages {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 420px) {
    .xitens-dp-page {
        min-width: 36px;
        height: 38px;
        padding: 0 9px;
    }

    .xitens-dp-previous,
    .xitens-dp-next {
        min-width: 74px;
    }
}
