.domain-results-table td {
    vertical-align: middle;
}

.domain-results-table .custom-control {
    margin: 0;
}

.domain-results-table .price-col {
    text-align: right;
    white-space: nowrap;
}

#domainCheckCard.is-loading #domainCheckContent {
    filter: blur(2px);
    opacity: 0.85;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sum-row .label {
    color: rgba(0, 0, 0, .55);
}

.sum-row .val {
    font-weight: 600;
    white-space: nowrap;
}

.price-note {
    font-size: 12px;
    color: rgba(0, 0, 0, .55);
    margin-top: 8px;
    text-align: right;
}

.row-muted {
    opacity: .55;
}

.premium-mini {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    font-size: 12px;
    color: #b8860b;
}

.action-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.domain-ns-choice-card {
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .35rem;
    background: #fff;
    padding: 1rem;
    height: 100%;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

.domain-ns-choice-card:hover {
    border-color: #17a2b8;
    box-shadow: 0 0 0 .1rem rgba(23, 162, 184, .08);
}

.domain-ns-choice-card.is-active {
    border-color: #17a2b8;
    box-shadow: 0 0 0 .15rem rgba(23, 162, 184, .12);
}

.domain-ns-choice-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.domain-ns-choice-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 162, 184, .12);
    color: #17a2b8;
    flex: 0 0 38px;
}

/* 2-row choice-card layout (includes/partials/vps_size_tiles.php): row 1 = icon + name side by
   side, row 2 = specs/price starting at the tile's own left edge instead of indented past the
   icon like .domain-ns-choice-head -- carried over from the hosting-wizard tile redesign
   (Tom, 2026-08-16), used only by the VPS size tiles for now. */
.domain-ns-choice-row1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.domain-ns-choice-row2 {
    margin-top: 8px;
}

/* Bottom-aligned tile price (Tom, 2026-08-16): tiles in the same row have a different number
   of spec lines (e.g. NEON has 3, ARGON/XENON have 4), so the price used to sit right under
   the checklist at a different height per tile -- uneven across the row. Bootstrap's .row
   already stretches sibling .col-* to equal height (align-items:stretch), and
   .domain-ns-choice-card already fills that height (.height:100% above); this just turns the
   card's own content into a flex column so .wz-tile-price can push itself to the bottom via
   margin-top:auto, lining prices up across a row regardless of checklist length. Applies to
   both the hosting-wizard tiles (.wz-plan-row2) and the VPS size tiles
   (.domain-ns-choice-row2) -- pages/order_hosting.php's own (untouched) tiles don't use either
   class, so this doesn't affect them. */
.domain-ns-choice-card .form-check,
.domain-ns-choice-card .form-check-label {
    height: 100%;
}
.domain-ns-choice-card .form-check-label {
    display: flex;
    flex-direction: column;
}
.wz-plan-row2,
.domain-ns-choice-row2 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.wz-tile-price {
    margin-top: auto;
    padding-top: 8px;
}

/* Spec checklist (Tom, 2026-08-16): one feature/spec per line with a small checkmark, instead
   of a single " · "-joined line -- originally built for the hosting wizard's plan tiles
   (css/pages/wizard_hosting.css), moved here so the VPS size tiles (both the wizard and the
   logged-in pages/order_vps.php, neither of which load wizard_hosting.css) can reuse the exact
   same style. The accent color falls back to the non-wizard teal (#17a2b8, matches
   .domain-ns-choice-icon above) when --wz-accent isn't defined, i.e. on pages/order_vps.php,
   which never loads css/wizard-shell.css. */
.wz-plan-specs {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12.5px;
    color: #6b6558;
}
.wz-plan-specs li {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 2px 0;
}
.wz-plan-specs li i {
    color: var(--wz-accent, #17a2b8);
    font-size: 10px;
    flex: none;
}

.domain-option-panel {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: .35rem;
    background: #fff;
    padding: 1rem;
}

.order-domain-ns-loading {
    display: none;
    width: 20px;
    height: 20px;
}

.order-domain-ns-resolved {
    display: none;
    font-size: .875rem;
    color: rgba(0, 0, 0, .65);
    margin-top: .35rem;
}

.order-domain-ns-ip-input {
    display: none;
}

@media (max-width: 767.98px) {
    .domain-ns-choice-head {
        gap: 10px;
    }

    .domain-ns-choice-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
}