/* BRITIXO_MYACCOUNT_HOSTING_SOLUTIONS_V3
 * Native MyAccount visual language.
 * Scoped exclusively to #hosting-solutions.
 */

#hosting-solutions {
    --hs-ink: #10213c;
    --hs-text: #40516b;
    --hs-muted: #718096;
    --hs-line: #dce5ef;
    --hs-soft: #f7f9fc;
    --hs-blue: #1764e8;
    --hs-green: #148354;
}

#hosting-solutions .page-heading {
    align-items: flex-start;
    margin-bottom: 22px;
}

#hosting-solutions .page-heading > div {
    max-width: 820px;
}

#hosting-solutions .page-heading p:last-child {
    max-width: 760px;
}

#hosting-solutions .hs-shell {
    display: grid;
    gap: 20px;
}

/*
 * Same visual hierarchy as My services:
 * rounded white shell + compact selectable cards.
 */
#hosting-solutions .hs-tabs-shell {
    padding: 6px;
    border: 1px solid var(--hs-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 42, 76, .04);
}

#hosting-solutions .hs-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

#hosting-solutions .hs-tab {
    appearance: none;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    min-height: 74px;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: var(--hs-text);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        color .18s ease;
}

#hosting-solutions .hs-tab:hover,
#hosting-solutions .hs-tab:focus-visible {
    border-color: var(--hs-line);
    background: var(--hs-soft);
    outline: 0;
}

#hosting-solutions .hs-tab.is-active {
    border-color: #cbdcf6;
    background: #f3f7ff;
    color: var(--hs-ink);
    box-shadow: inset 3px 0 0 var(--hs-blue);
}

#hosting-solutions .hs-tab-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #edf4ff;
    color: var(--hs-blue);
}

#hosting-solutions .hs-tab.is-active .hs-tab-icon {
    background: var(--hs-blue);
    color: #fff;
}

#hosting-solutions .hs-tab-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#hosting-solutions .hs-tab-copy {
    min-width: 0;
}

#hosting-solutions .hs-tab-copy strong,
#hosting-solutions .hs-tab-copy small {
    display: block;
}

#hosting-solutions .hs-tab-copy strong {
    color: inherit;
    font-size: 14px;
    line-height: 1.3;
}

#hosting-solutions .hs-tab-copy small {
    margin-top: 3px;
    overflow: hidden;
    color: var(--hs-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#hosting-solutions [data-hosting-tab-panel][hidden] {
    display: none !important;
}

#hosting-solutions .hs-panel {
    display: grid;
    gap: 16px;
}

/* Standard MyAccount-style section card. */
#hosting-solutions .hs-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 0;
    padding: 20px 22px;
    border: 1px solid var(--hs-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 42, 76, .04);
}

#hosting-solutions .hs-overview-copy {
    min-width: 0;
}

#hosting-solutions .hs-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--hs-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#hosting-solutions .hs-overview h2 {
    margin: 0;
    color: var(--hs-ink);
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.3;
}

#hosting-solutions .hs-overview p {
    max-width: 760px;
    margin: 7px 0 0;
    color: var(--hs-text);
    font-size: 14px;
    line-height: 1.6;
}

#hosting-solutions .hs-refresh {
    flex: 0 0 auto;
    min-height: 40px;
}

/* VPS services */
#hosting-solutions .hs-vps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

#hosting-solutions .hs-vps-grid > .hs-empty:only-child {
    grid-column: 1 / -1;
}

#hosting-solutions .hs-card,
#hosting-solutions .hs-empty {
    border: 1px solid var(--hs-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 42, 76, .04);
}

#hosting-solutions .hs-card {
    padding: 20px;
}

#hosting-solutions .hs-empty {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 20px 22px;
    text-align: left;
}

#hosting-solutions .hs-empty-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f1f5fa;
    color: #59708f;
}

#hosting-solutions .hs-empty-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#hosting-solutions .hs-empty h3 {
    margin: 0;
    color: var(--hs-ink);
    font-size: 16px;
}

#hosting-solutions .hs-empty p {
    margin: 5px 0 0;
    color: var(--hs-muted);
    font-size: 13px;
    line-height: 1.55;
}

#hosting-solutions .hs-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

#hosting-solutions .hs-card-head h3,
#hosting-solutions .hs-plan-title {
    margin: 3px 0 0;
    color: var(--hs-ink);
    font-size: 18px;
}

#hosting-solutions .hs-status {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef3f8;
    color: #53677f;
    font-size: 11px;
    font-weight: 800;
}

#hosting-solutions .hs-status--active,
#hosting-solutions .hs-status--running,
#hosting-solutions .hs-status--started,
#hosting-solutions .hs-status--online {
    background: #e8f7ef;
    color: var(--hs-green);
}

#hosting-solutions .hs-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 16px;
}

#hosting-solutions .hs-detail {
    padding: 11px 12px;
    border-radius: 10px;
    background: var(--hs-soft);
}

#hosting-solutions .hs-detail span {
    display: block;
    margin-bottom: 3px;
    color: var(--hs-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#hosting-solutions .hs-detail strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--hs-ink);
    font-size: 13px;
}

#hosting-solutions .hs-foot {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #edf1f5;
    color: var(--hs-muted);
    font-size: 11px;
    line-height: 1.55;
}

/* Shared Hosting */
#hosting-solutions .hs-shared-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 14px;
}

#hosting-solutions .hs-capabilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 18px;
}

#hosting-solutions .hs-capability {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid #e5ebf2;
    border-radius: 10px;
    background: var(--hs-soft);
    color: var(--hs-text);
    font-size: 12px;
    font-weight: 700;
}

#hosting-solutions .hs-capability::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--hs-green);
}

#hosting-solutions .hs-access-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* VPS packages */
#hosting-solutions .hs-package-toolbar {
    align-items: center;
}

#hosting-solutions .hs-term {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

#hosting-solutions .hs-term label {
    color: var(--hs-muted);
    font-size: 12px;
    font-weight: 800;
}

#hosting-solutions .hs-term select {
    min-height: 40px;
    padding: 8px 34px 8px 12px;
    border: 1px solid #ccd8e6;
    border-radius: 9px;
    background: #fff;
    color: var(--hs-ink);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

#hosting-solutions .hs-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #d9e6f6;
    border-radius: 12px;
    background: #f5f9ff;
    color: #45617e;
    font-size: 12px;
    line-height: 1.5;
}

#hosting-solutions .hs-note::before {
    content: "i";
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: #dceaff;
    color: var(--hs-blue);
    font-size: 12px;
    font-weight: 900;
}

#hosting-solutions .hs-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

#hosting-solutions .hs-plan-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

#hosting-solutions .hs-plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

#hosting-solutions .hs-managed-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #edf7f2;
    color: var(--hs-green);
    font-size: 10px;
    font-weight: 800;
}

#hosting-solutions .hs-price {
    margin: 16px 0 4px;
}

#hosting-solutions .hs-price strong {
    display: block;
    color: var(--hs-ink);
    font-size: 26px;
    line-height: 1.15;
}

#hosting-solutions .hs-price span {
    display: block;
    margin-top: 4px;
    color: var(--hs-muted);
    font-size: 11px;
    line-height: 1.45;
}

#hosting-solutions .hs-specs {
    display: grid;
    gap: 7px;
    margin: 15px 0 18px;
    padding: 0;
    list-style: none;
    color: var(--hs-text);
    font-size: 12px;
}

#hosting-solutions .hs-specs li {
    position: relative;
    padding-left: 17px;
}

#hosting-solutions .hs-specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hs-green);
    font-weight: 900;
}

#hosting-solutions .hs-plan-action {
    width: 100%;
    margin-top: auto;
}

/* This becomes the functional Order Now control in the next transaction. */
#hosting-solutions .hs-plan-action--pending {
    border-color: #d6e0eb;
    background: #f3f6f9;
    color: #718096;
    pointer-events: none;
}

@media (max-width: 1180px) {
    #hosting-solutions .hs-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    #hosting-solutions .hs-tabs {
        grid-template-columns: 1fr;
    }

    #hosting-solutions .hs-tab {
        min-height: 62px;
    }

    #hosting-solutions .hs-shared-grid,
    #hosting-solutions .hs-vps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    #hosting-solutions .hs-overview {
        align-items: stretch;
        flex-direction: column;
    }

    #hosting-solutions .hs-plan-grid {
        grid-template-columns: 1fr;
    }

    #hosting-solutions .hs-details,
    #hosting-solutions .hs-capabilities {
        grid-template-columns: 1fr;
    }

    #hosting-solutions .hs-term {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    #hosting-solutions .hs-term select {
        width: 100%;
    }

    #hosting-solutions .hs-empty {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #hosting-solutions .hs-empty-icon {
        margin: 0 auto;
    }
}

/* ==========================================================
   BRITIXO_MYACCOUNT_CLIENT_VPS_CONTROL_UI_V1
   Client VPS command centre — Hosting Solutions scope only
   ========================================================== */

#hosting-solutions .hs-vps-service-card {
    display: flex;
    flex-direction: column;
}

#hosting-solutions .hs-vps-card-actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #edf1f5;
}

#hosting-solutions .hs-vps-card-actions .hs-foot {
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
    border: 0;
}

#hosting-solutions .hs-vps-card-actions .button {
    flex: 0 0 auto;
}

#hosting-solutions .hs-vps-control {
    position: relative;
    margin-top: 22px;
    padding: 22px;
    border: 1px solid var(--hs-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(20, 42, 76, .08);
}

#hosting-solutions .hs-vps-control[hidden] {
    display: none !important;
}

#hosting-solutions .hs-vps-control-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--hs-line);
}

#hosting-solutions .hs-vps-control-hero h2 {
    margin: 4px 0 5px;
    color: var(--hs-ink);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.15;
}

#hosting-solutions .hs-vps-control-hero p {
    margin: 0;
    color: var(--hs-muted);
    font-size: 13px;
}

#hosting-solutions .hs-vps-control-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

#hosting-solutions .hs-vps-server-tabs {
    display: flex;
    gap: 9px;
    margin-top: 18px;
    padding: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

#hosting-solutions .hs-vps-server-tab {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "number state"
        "name state";
    align-items: center;
    min-width: 190px;
    padding: 11px 13px;
    border: 1px solid var(--hs-line);
    border-radius: 13px;
    background: #f8fafc;
    color: var(--hs-ink);
    text-align: left;
    cursor: pointer;
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

#hosting-solutions .hs-vps-server-tab:hover,
#hosting-solutions .hs-vps-server-tab:focus-visible {
    border-color: #9fb4ca;
    outline: none;
}

#hosting-solutions .hs-vps-server-tab.is-active {
    border-color: #2f5f91;
    background: #fff;
    box-shadow: 0 7px 20px rgba(31, 67, 110, .10);
}

#hosting-solutions .hs-vps-server-number {
    grid-area: number;
    color: var(--hs-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-server-tab strong {
    grid-area: name;
    display: block;
    max-width: 135px;
    overflow: hidden;
    color: var(--hs-ink);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#hosting-solutions .hs-vps-server-state {
    grid-area: state;
    justify-self: end;
    padding: 4px 7px;
    border-radius: 999px;
    background: #eef3f8;
    color: #53677f;
    font-size: 9px;
    font-weight: 900;
}

#hosting-solutions .hs-vps-server-state--active,
#hosting-solutions .hs-vps-server-state--running,
#hosting-solutions .hs-vps-server-state--started,
#hosting-solutions .hs-vps-server-state--online {
    background: #e8f7ef;
    color: var(--hs-green);
}

#hosting-solutions .hs-vps-section-tabs {
    display: flex;
    gap: 7px;
    margin-top: 14px;
    padding-bottom: 3px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

#hosting-solutions .hs-vps-section-tab {
    flex: 0 0 auto;
    min-height: 37px;
    padding: 8px 12px;
    border: 1px solid var(--hs-line);
    border-radius: 999px;
    background: #fff;
    color: #53677f;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

#hosting-solutions .hs-vps-section-tab:hover,
#hosting-solutions .hs-vps-section-tab:focus-visible {
    border-color: #9fb4ca;
    outline: none;
}

#hosting-solutions .hs-vps-section-tab.is-active {
    border-color: #183b63;
    background: #183b63;
    color: #fff;
}

#hosting-solutions .hs-vps-control-message {
    margin-top: 15px;
    padding: 11px 13px;
    border: 1px solid #cbd8e6;
    border-radius: 10px;
    background: #f5f8fb;
    color: var(--hs-text);
    font-size: 12px;
    font-weight: 700;
}

#hosting-solutions .hs-vps-control-message--error {
    border-color: #e2b7b7;
    background: #fff5f5;
    color: #8c3030;
}

#hosting-solutions .hs-vps-live-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, .75fr);
    gap: 18px;
    margin-top: 18px;
}

#hosting-solutions .hs-vps-live-panel,
#hosting-solutions .hs-vps-action-panel {
    min-width: 0;
}

#hosting-solutions .hs-vps-live-panel {
    padding: 18px;
    border: 1px solid var(--hs-line);
    border-radius: 15px;
    background: #fbfcfe;
}

#hosting-solutions .hs-vps-action-panel {
    align-self: start;
    padding: 18px;
    border: 1px solid var(--hs-line);
    border-radius: 15px;
    background: #fff;
}

#hosting-solutions .hs-vps-section-heading,
#hosting-solutions .hs-vps-action-heading,
#hosting-solutions .hs-vps-data-heading,
#hosting-solutions .hs-vps-result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

#hosting-solutions .hs-vps-section-heading h3,
#hosting-solutions .hs-vps-action-heading h3 {
    margin: 3px 0 0;
    color: var(--hs-ink);
    font-size: 19px;
}

#hosting-solutions .hs-vps-action-heading p {
    margin: 5px 0 0;
    color: var(--hs-muted);
    font-size: 12px;
    line-height: 1.5;
}

#hosting-solutions .hs-vps-refreshed,
#hosting-solutions .hs-vps-data-heading > span {
    color: var(--hs-muted);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

#hosting-solutions .hs-vps-data-block {
    margin-top: 14px;
    padding: 15px;
    border: 1px solid #e3eaf2;
    border-radius: 12px;
    background: #fff;
}

#hosting-solutions .hs-vps-data-heading h4 {
    margin: 0;
    color: var(--hs-ink);
    font-size: 14px;
}

#hosting-solutions .hs-vps-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

#hosting-solutions .hs-vps-data-field {
    min-width: 0;
    padding: 10px 11px;
    border-radius: 9px;
    background: var(--hs-soft);
}

#hosting-solutions .hs-vps-data-field span {
    display: block;
    margin-bottom: 3px;
    color: var(--hs-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-data-field strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--hs-ink);
    font-size: 12px;
}

#hosting-solutions .hs-vps-data-details {
    margin-top: 9px;
    border-top: 1px solid #edf1f5;
}

#hosting-solutions .hs-vps-data-details summary {
    padding: 10px 0 4px;
    color: #365575;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

#hosting-solutions .hs-vps-json {
    max-height: 360px;
    margin: 8px 0 0;
    padding: 12px;
    overflow: auto;
    border-radius: 9px;
    background: #10263f;
    color: #eef6ff;
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    font-size: 10.5px;
    line-height: 1.55;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

#hosting-solutions .hs-vps-data-empty,
#hosting-solutions .hs-vps-action-empty-inline {
    margin-top: 10px;
    color: var(--hs-muted);
    font-size: 12px;
    line-height: 1.55;
}

#hosting-solutions .hs-vps-warning-list {
    display: grid;
    gap: 7px;
    margin-top: 13px;
}

#hosting-solutions .hs-vps-warning {
    padding: 9px 11px;
    border: 1px solid #ead8b1;
    border-radius: 9px;
    background: #fffaf0;
    color: #7a5b1f;
    font-size: 11px;
    line-height: 1.5;
}

#hosting-solutions .hs-vps-operation-group {
    margin-top: 15px;
}

#hosting-solutions .hs-vps-operation-group h4 {
    margin: 0 0 7px;
    color: var(--hs-ink);
    font-size: 11px;
}

#hosting-solutions .hs-vps-operation-list {
    display: grid;
    gap: 7px;
}

#hosting-solutions .hs-vps-operation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 11px;
    border: 1px solid #dce5ef;
    border-radius: 10px;
    background: #fff;
    color: var(--hs-ink);
    text-align: left;
    cursor: pointer;
}

#hosting-solutions .hs-vps-operation:hover,
#hosting-solutions .hs-vps-operation:focus-visible {
    border-color: #9fb4ca;
    background: #f8fbfe;
    outline: none;
}

#hosting-solutions .hs-vps-operation strong {
    display: block;
    font-size: 11.5px;
    line-height: 1.35;
}

#hosting-solutions .hs-vps-operation small {
    display: block;
    margin-top: 3px;
    color: var(--hs-muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-operation--destructive {
    border-color: #e1b9b9;
    background: #fffafa;
}

#hosting-solutions .hs-vps-operation--sensitive {
    border-color: #decfae;
    background: #fffdf8;
}

#hosting-solutions .hs-vps-all-operations {
    margin-top: 18px;
    border-top: 1px solid var(--hs-line);
}

#hosting-solutions .hs-vps-all-operations > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 2px;
    color: #365575;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}

#hosting-solutions .hs-vps-all-operations > summary span {
    display: inline-flex;
    min-width: 24px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #edf3f8;
    font-size: 9px;
}

#hosting-solutions .hs-vps-all-operations-body {
    padding-top: 2px;
}

#hosting-solutions .hs-vps-workspace-loading {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 150px;
    color: var(--hs-muted);
}

#hosting-solutions .hs-vps-workspace-loading h3,
#hosting-solutions .hs-vps-control-error h3,
#hosting-solutions .hs-vps-action-empty h3 {
    margin: 0;
    color: var(--hs-ink);
    font-size: 15px;
}

#hosting-solutions .hs-vps-workspace-loading p,
#hosting-solutions .hs-vps-control-error p,
#hosting-solutions .hs-vps-action-empty p {
    margin: 4px 0 0;
    color: var(--hs-muted);
    font-size: 12px;
}

#hosting-solutions .hs-vps-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #dae4ee;
    border-top-color: #365f89;
    border-radius: 50%;
    animation: hs-vps-spin .8s linear infinite;
}

@keyframes hs-vps-spin {
    to {
        transform: rotate(360deg);
    }
}

#hosting-solutions .hs-vps-table-wrap {
    margin-top: 12px;
    overflow-x: auto;
}

#hosting-solutions .hs-vps-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-table th,
#hosting-solutions .hs-vps-table td {
    padding: 8px;
    border-bottom: 1px solid #edf1f5;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

#hosting-solutions .hs-vps-table th {
    color: var(--hs-muted);
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-audit-outcome {
    display: inline-flex;
    padding: 3px 7px;
    border-radius: 999px;
    background: #edf2f7;
    font-size: 9px;
    font-weight: 900;
}

#hosting-solutions .hs-vps-audit-outcome--success {
    background: #e8f7ef;
    color: var(--hs-green);
}

#hosting-solutions .hs-vps-audit-outcome--failed,
#hosting-solutions .hs-vps-audit-outcome--denied {
    background: #fff0f0;
    color: #963d3d;
}

#hosting-solutions .hs-vps-operation-modal[hidden] {
    display: none !important;
}

#hosting-solutions .hs-vps-operation-modal {
    position: fixed;
    z-index: 10020;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

#hosting-solutions .hs-vps-operation-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 27, 46, .60);
    backdrop-filter: blur(3px);
}

#hosting-solutions .hs-vps-operation-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: min(86vh, 860px);
    overflow-y: auto;
    border: 1px solid #d9e2ec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(6, 25, 46, .28);
}

#hosting-solutions .hs-vps-operation-form {
    padding: 21px;
}

#hosting-solutions .hs-vps-operation-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--hs-line);
}

#hosting-solutions .hs-vps-operation-head h3 {
    margin: 4px 0;
    color: var(--hs-ink);
    font-size: 19px;
}

#hosting-solutions .hs-vps-operation-head p {
    margin: 0;
    color: var(--hs-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-modal-close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--hs-line);
    border-radius: 10px;
    background: #fff;
    color: #53677f;
    font-size: 22px;
    cursor: pointer;
}

#hosting-solutions .hs-vps-operation-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 17px;
}

#hosting-solutions .hs-vps-form-field {
    display: grid;
    gap: 6px;
    margin-top: 15px;
}

#hosting-solutions .hs-vps-operation-fields .hs-vps-form-field {
    margin-top: 0;
}

#hosting-solutions .hs-vps-form-field > span {
    color: var(--hs-ink);
    font-size: 11px;
    font-weight: 800;
}

#hosting-solutions .hs-vps-form-field em {
    margin-left: 5px;
    color: #9b4a4a;
    font-size: 8px;
    font-style: normal;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-form-field input,
#hosting-solutions .hs-vps-form-field select,
#hosting-solutions .hs-vps-form-field textarea,
#hosting-solutions .hs-vps-danger-confirmation input {
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
    border: 1px solid #ccd8e5;
    border-radius: 9px;
    background: #fff;
    color: var(--hs-ink);
    font: inherit;
    font-size: 12px;
}

#hosting-solutions .hs-vps-form-field textarea {
    min-height: 180px;
    resize: vertical;
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    line-height: 1.45;
}

#hosting-solutions .hs-vps-form-field input:focus,
#hosting-solutions .hs-vps-form-field select:focus,
#hosting-solutions .hs-vps-form-field textarea:focus,
#hosting-solutions .hs-vps-danger-confirmation input:focus {
    border-color: #6d91b6;
    outline: 2px solid rgba(67, 111, 154, .12);
}

#hosting-solutions .hs-vps-form-field small {
    color: var(--hs-muted);
    font-size: 9px;
}

#hosting-solutions .hs-vps-operation-note {
    margin-top: 16px;
    padding: 11px;
    border-radius: 9px;
    background: #f6f9fc;
    color: var(--hs-muted);
    font-size: 11px;
}

#hosting-solutions .hs-vps-danger-confirmation {
    margin-top: 17px;
    padding: 13px;
    border: 1px solid #e3b7b7;
    border-radius: 11px;
    background: #fff6f6;
}

#hosting-solutions .hs-vps-danger-confirmation strong {
    color: #873a3a;
    font-size: 12px;
}

#hosting-solutions .hs-vps-danger-confirmation p {
    margin: 6px 0 9px;
    color: #745050;
    font-size: 11px;
}

#hosting-solutions .hs-vps-danger-confirmation code {
    padding: 2px 5px;
    border-radius: 5px;
    background: #f1dede;
    color: #722f2f;
}

#hosting-solutions .hs-vps-operation-error {
    margin-top: 13px;
    padding: 10px 11px;
    border: 1px solid #dfb3b3;
    border-radius: 9px;
    background: #fff2f2;
    color: #8b3737;
    font-size: 11px;
}

#hosting-solutions .hs-vps-operation-actions {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--hs-line);
}

#hosting-solutions .hs-vps-operation-result {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--hs-line);
}

#hosting-solutions .hs-vps-operation-result h4 {
    margin: 4px 0 0;
    color: var(--hs-ink);
    font-size: 14px;
}

@media (max-width: 980px) {
    #hosting-solutions .hs-vps-live-grid {
        grid-template-columns: 1fr;
    }

    #hosting-solutions .hs-vps-action-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    #hosting-solutions .hs-vps-control {
        padding: 15px;
        border-radius: 15px;
    }

    #hosting-solutions .hs-vps-control-hero {
        flex-direction: column;
    }

    #hosting-solutions .hs-vps-control-hero-actions {
        width: 100%;
        justify-content: flex-start;
    }

    #hosting-solutions .hs-vps-server-tab {
        min-width: 175px;
    }

    #hosting-solutions .hs-vps-data-grid,
    #hosting-solutions .hs-vps-operation-fields {
        grid-template-columns: 1fr;
    }

    #hosting-solutions .hs-vps-card-actions,
    #hosting-solutions .hs-vps-section-heading,
    #hosting-solutions .hs-vps-data-heading,
    #hosting-solutions .hs-vps-result-head {
        align-items: stretch;
        flex-direction: column;
    }

    #hosting-solutions .hs-vps-card-actions .button {
        width: 100%;
        justify-content: center;
    }

    #hosting-solutions .hs-vps-operation-actions {
        flex-direction: column-reverse;
    }

    #hosting-solutions .hs-vps-operation-actions .button {
        width: 100%;
        justify-content: center;
    }

    #hosting-solutions .hs-vps-operation-modal {
        padding: 10px;
    }

    #hosting-solutions .hs-vps-operation-dialog {
        width: 100%;
        max-height: 92vh;
        border-radius: 14px;
    }

    #hosting-solutions .hs-vps-operation-form {
        padding: 16px;
    }
}

/* BRITIXO_MYACCOUNT_CLIENT_VPS_CONTROL_UI_V1_END */


/* ==========================================================
   BRITIXO_MYACCOUNT_CLIENT_VPS_ADMINSTYLE_UI_V2
   Admin-inspired client VPS command centre
   ========================================================== */

#hosting-solutions .hs-status--up,
#hosting-solutions .hs-status--healthy,
#hosting-solutions .hs-status--enabled,
#hosting-solutions .hs-vps-server-state--up {
    background: #e4f7ed;
    color: #087a45;
}

#hosting-solutions .hs-vps-control {
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
}

#hosting-solutions .hs-vps-control-hero {
    padding: 20px 24px;
    background: #fff;
}

#hosting-solutions .hs-vps-control-hero h2 {
    margin-top: 5px;
    font-size: 23px;
}

#hosting-solutions .hs-vps-control-hero-actions {
    align-items: center;
}

#hosting-solutions .hs-vps-admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#hosting-solutions .hs-vps-quick {
    min-width: 94px;
    min-height: 39px;
    padding: 8px 15px;
    border: 1px solid #cad5e1;
    border-radius: 9px;
    background: #fff;
    color: #24364d;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition:
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease;
}

#hosting-solutions .hs-vps-quick:hover,
#hosting-solutions .hs-vps-quick:focus-visible {
    border-color: #829db9;
    background: #f8fafc;
    outline: none;
    box-shadow: 0 4px 12px rgba(28, 58, 91, .08);
}

#hosting-solutions .hs-vps-quick--danger {
    border-color: #dc3545;
    background: #dc3545;
    color: #fff;
}

#hosting-solutions .hs-vps-quick--danger:hover,
#hosting-solutions .hs-vps-quick--danger:focus-visible {
    border-color: #be2433;
    background: #c92d3c;
}

#hosting-solutions .hs-vps-server-tabs {
    margin: 0;
    padding: 14px 24px 7px;
    border-top: 1px solid #edf1f5;
    background: #fbfcfe;
}

#hosting-solutions .hs-vps-admin-details {
    margin: 0;
    padding: 22px 24px 24px;
    background: #fbfcfe;
}

#hosting-solutions .hs-vps-admin-details-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 13px;
}

#hosting-solutions .hs-vps-admin-details-head h3 {
    margin: 4px 0 0;
    color: var(--hs-ink);
    font-size: 22px;
}

#hosting-solutions .hs-vps-admin-details-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 54px;
    padding: 24px 20px;
    border: 1px solid #9ebeea;
    border-radius: 10px;
    background: #fff;
}

#hosting-solutions .hs-vps-admin-detail-column {
    display: grid;
    gap: 0;
    margin: 0;
}

#hosting-solutions .hs-vps-admin-detail-column > div {
    display: grid;
    grid-template-columns: minmax(120px, .7fr) minmax(0, 1.3fr);
    align-items: center;
    min-height: 47px;
    gap: 16px;
}

#hosting-solutions .hs-vps-admin-detail-column dt {
    margin: 0;
    color: #162438;
    font-size: 11px;
    font-weight: 850;
}

#hosting-solutions .hs-vps-admin-detail-column dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: #4d6078;
    font-size: 11.5px;
    line-height: 1.45;
}

#hosting-solutions .hs-vps-admin-detail-column dd strong {
    color: #253a54;
}

#hosting-solutions .hs-vps-mono {
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
}

#hosting-solutions .hs-vps-inline-action {
    margin-left: 9px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0868d9;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

#hosting-solutions .hs-vps-inline-action:hover {
    text-decoration: underline;
}

#hosting-solutions .hs-vps-monitoring-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

#hosting-solutions .hs-vps-section-tabs {
    margin: 0;
    padding: 13px 24px 0;
    border-top: 1px solid #e5ebf2;
    border-bottom: 1px solid #dce5ee;
    background: #fff;
}

#hosting-solutions .hs-vps-section-tab {
    min-height: 42px;
    padding: 9px 13px 11px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #738095;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-section-tab:hover,
#hosting-solutions .hs-vps-section-tab:focus-visible {
    border-color: transparent;
    border-bottom-color: #b7c7d9;
    background: transparent;
    color: #28517d;
}

#hosting-solutions .hs-vps-section-tab.is-active {
    border-color: transparent;
    border-bottom-color: #1268d5;
    background: transparent;
    color: #1268d5;
}

#hosting-solutions .hs-vps-control-message {
    margin: 15px 24px 0;
}

#hosting-solutions .hs-vps-live-grid {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 360px);
    gap: 18px;
    margin: 0;
    padding: 22px 24px 26px;
    background: #fff;
}

#hosting-solutions .hs-vps-live-panel,
#hosting-solutions .hs-vps-action-panel {
    border-radius: 14px;
}

#hosting-solutions .hs-vps-live-panel {
    padding: 20px;
    border-color: #dce5ee;
    background: #fff;
}

#hosting-solutions .hs-vps-action-panel {
    padding: 20px;
    border-color: #dce5ee;
}

#hosting-solutions .hs-vps-action-heading {
    display: block;
}

#hosting-solutions .hs-vps-action-heading h3 {
    margin-top: 5px;
}

#hosting-solutions .hs-vps-operation-group {
    margin-top: 13px;
}

#hosting-solutions .hs-vps-operation {
    padding: 11px 12px;
    border-radius: 9px;
}

#hosting-solutions .hs-vps-operation strong {
    font-size: 11px;
}

#hosting-solutions .hs-vps-all-operations {
    margin-top: 18px;
}

#hosting-solutions .hs-vps-all-operations > summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    padding: 15px 0 5px;
}

#hosting-solutions .hs-vps-advanced-copy {
    display: grid;
    gap: 2px;
}

#hosting-solutions .hs-vps-advanced-copy strong {
    color: #294563;
    font-size: 11px;
}

#hosting-solutions .hs-vps-advanced-copy small {
    color: var(--hs-muted);
    font-size: 9px;
}

#hosting-solutions .hs-vps-risk-counts {
    color: #8390a2;
    font-size: 8.5px;
    font-weight: 750;
}

#hosting-solutions .hs-vps-access-card {
    margin-top: 14px;
    padding: 17px;
    border: 1px solid #dce5ee;
    border-radius: 12px;
    background: #fff;
}

#hosting-solutions .hs-vps-access-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 13px;
    border-bottom: 1px solid #edf1f5;
}

#hosting-solutions .hs-vps-access-head h4 {
    margin: 4px 0 0;
    color: var(--hs-ink);
    font-size: 15px;
}

#hosting-solutions .hs-vps-access-notice {
    margin: 13px 0;
    padding: 10px 12px;
    border-radius: 9px;
    background: #f5f8fc;
    color: #607087;
    font-size: 10.5px;
    line-height: 1.5;
}

#hosting-solutions .hs-vps-credential-table-wrap {
    overflow-x: auto;
}

#hosting-solutions .hs-vps-credential-table {
    width: 100%;
    border-collapse: collapse;
}

#hosting-solutions .hs-vps-credential-table th,
#hosting-solutions .hs-vps-credential-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #edf1f5;
    text-align: left;
    vertical-align: middle;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-credential-table th {
    color: #738197;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .045em;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-credential-table td {
    color: #31465f;
}

#hosting-solutions .hs-vps-credential-action-cell {
    width: 300px;
}

#hosting-solutions .hs-vps-secret-result {
    display: grid;
    gap: 6px;
}

#hosting-solutions .hs-vps-secret-result > span {
    color: #668096;
    font-size: 8.5px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-secret-control {
    display: flex;
    align-items: stretch;
    gap: 5px;
}

#hosting-solutions .hs-vps-secret-control input {
    min-width: 0;
    flex: 1 1 auto;
    height: 36px;
    padding: 7px 9px;
    border: 1px solid #cbd7e3;
    border-radius: 8px;
    background: #f9fbfd;
    color: #152a42;
    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-secret-control button {
    min-width: 48px;
    padding: 6px 8px;
    border: 1px solid #cbd7e3;
    border-radius: 8px;
    background: #fff;
    color: #254c76;
    font: inherit;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
}

#hosting-solutions .hs-vps-secret-control button:hover {
    background: #f3f7fb;
}

#hosting-solutions .hs-vps-secret-result small {
    color: #78889c;
    font-size: 8.5px;
}

#hosting-solutions .hs-vps-secret-error {
    margin-bottom: 7px;
    color: #9c3535;
    font-size: 10px;
    font-weight: 750;
}

#hosting-solutions .hs-vps-secret-cleared {
    color: #76869a;
    font-size: 10px;
    font-weight: 750;
}

#hosting-solutions .hs-vps-reveal-password {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 9.5px;
}

@media (max-width: 1050px) {
    #hosting-solutions .hs-vps-live-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    #hosting-solutions .hs-vps-admin-details-panel {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #hosting-solutions .hs-vps-admin-detail-column > div {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    #hosting-solutions .hs-vps-control-hero {
        padding: 17px;
    }

    #hosting-solutions .hs-vps-server-tabs,
    #hosting-solutions .hs-vps-admin-details,
    #hosting-solutions .hs-vps-section-tabs,
    #hosting-solutions .hs-vps-live-grid {
        padding-left: 17px;
        padding-right: 17px;
    }
}

@media (max-width: 620px) {
    #hosting-solutions .hs-vps-admin-detail-column > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 8px 0;
    }

    #hosting-solutions .hs-vps-admin-quick-actions {
        width: 100%;
    }

    #hosting-solutions .hs-vps-quick {
        flex: 1 1 calc(50% - 8px);
    }

    #hosting-solutions .hs-vps-access-head {
        align-items: stretch;
        flex-direction: column;
    }

    #hosting-solutions .hs-vps-credential-action-cell {
        min-width: 260px;
    }

    #hosting-solutions .hs-vps-secret-control {
        flex-wrap: wrap;
    }

    #hosting-solutions .hs-vps-secret-control input {
        flex-basis: 100%;
    }
}

/* BRITIXO_MYACCOUNT_CLIENT_VPS_ADMINSTYLE_UI_V2_END */

/*
 * BRITIXO_MYACCOUNT_VPS_SUMMARY_CARD_REMOVED_V3
 *
 * The authorised VPS records remain loaded in JavaScript and continue
 * powering the live command centre and multi-VPS selector.
 *
 * Hide only the redundant summary service cards.
 * The no-VPS .hs-empty state remains visible.
 */
#hosting-solutions
[data-hosting-vps-list]
> .hs-vps-service-card {
    display: none !important;
}

/* BRITIXO_MYACCOUNT_VPS_SUMMARY_CARD_REMOVED_V3_END */

/* ==========================================================
   BRITIXO_MYACCOUNT_CLIENT_VPS_PRO_CONTROLS_V4
   Customer-grade VPS operations
   ========================================================== */

#hosting-solutions .hs-vps-live-grid {
    grid-template-columns: 1fr;
}

#hosting-solutions .hs-vps-action-panel {
    padding: 0;
    border: 0;
    background: transparent;
}

#hosting-solutions .hs-vps-pro-card {
    margin-top: 15px;
    padding: 18px;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: #fff;
}

#hosting-solutions .hs-vps-pro-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf1f5;
}

#hosting-solutions .hs-vps-pro-section-head h4 {
    margin: 3px 0 0;
    color: #132941;
    font-size: 16px;
}

#hosting-solutions .hs-vps-pro-contract-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid #e2e9f1;
    border-radius: 10px;
    background: #e2e9f1;
}

#hosting-solutions .hs-vps-pro-contract-grid > div {
    padding: 13px 14px;
    background: #fff;
}

#hosting-solutions .hs-vps-pro-contract-grid span,
#hosting-solutions .hs-vps-pro-metrics span {
    display: block;
    margin-bottom: 5px;
    color: #748398;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-pro-contract-grid strong {
    display: block;
    overflow-wrap: anywhere;
    color: #263d57;
    font-size: 11.5px;
}

#hosting-solutions .hs-vps-pro-metrics {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 15px;
}

#hosting-solutions .hs-vps-pro-metrics article {
    padding: 16px;
    border: 1px solid #e0e8f0;
    border-radius: 11px;
    background: #f8fafc;
}

#hosting-solutions .hs-vps-pro-metrics strong {
    display: block;
    color: #132941;
    font-size: 22px;
}

#hosting-solutions .hs-vps-pro-metrics small {
    display: block;
    margin-top: 5px;
    color: #77889c;
    font-size: 9px;
}

#hosting-solutions .hs-vps-pro-table-wrap {
    margin-top: 15px;
    overflow-x: auto;
}

#hosting-solutions .hs-vps-pro-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-pro-table th,
#hosting-solutions .hs-vps-pro-table td {
    padding: 11px 10px;
    border-bottom: 1px solid #edf1f5;
    text-align: left;
    vertical-align: middle;
}

#hosting-solutions .hs-vps-pro-table th {
    color: #718198;
    font-size: 8.5px;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
    white-space: nowrap;
}

#hosting-solutions .hs-vps-pro-empty {
    padding: 16px !important;
    color: #7b899b;
    font-size: 10.5px;
    text-align: center !important;
}

#hosting-solutions .hs-vps-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#hosting-solutions .hs-vps-row-action {
    min-height: 29px;
    padding: 5px 8px;
    border: 1px solid #cdd9e5;
    border-radius: 7px;
    background: #fff;
    color: #235985;
    font: inherit;
    font-size: 8.5px;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap;
}

#hosting-solutions .hs-vps-row-action:hover {
    border-color: #86a5c4;
    background: #f6f9fc;
}

#hosting-solutions .hs-vps-row-action.is-primary {
    border-color: #1468d5;
    background: #1468d5;
    color: #fff;
}

#hosting-solutions .hs-vps-row-action.is-danger {
    border-color: #dcbbbb;
    color: #a33d3d;
}

#hosting-solutions .hs-vps-mini-state {
    display: inline-flex;
    padding: 4px 7px;
    border-radius: 999px;
    font-size: 8.5px;
    font-weight: 900;
}

#hosting-solutions .hs-vps-mini-state.is-good {
    background: #e5f8ee;
    color: #0b7d48;
}

#hosting-solutions .hs-vps-mini-state.is-danger {
    background: #fff0f0;
    color: #a13d3d;
}

#hosting-solutions .hs-vps-pro-security-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 15px;
}

#hosting-solutions .hs-vps-pro-security-grid article {
    display: flex;
    gap: 11px;
    padding: 15px;
    border: 1px solid #dce6ef;
    border-radius: 11px;
    background: #fbfcfe;
}

#hosting-solutions .hs-vps-pro-security-icon {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: #e6f8ef;
    color: #07804a;
    font-weight: 900;
}

#hosting-solutions .hs-vps-pro-security-grid article strong {
    display: block;
    color: #18314d;
    font-size: 11px;
}

#hosting-solutions .hs-vps-pro-security-grid article small {
    display: block;
    margin-top: 3px;
    color: #718198;
    font-size: 9px;
}

#hosting-solutions .hs-vps-pro-security-grid dl {
    margin: 10px 0 0;
}

#hosting-solutions .hs-vps-pro-security-grid dl div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    margin-top: 5px;
}

#hosting-solutions .hs-vps-pro-security-grid dt,
#hosting-solutions .hs-vps-pro-security-grid dd {
    margin: 0;
    font-size: 9px;
}

#hosting-solutions .hs-vps-pro-security-grid dt {
    color: #79879a;
}

#hosting-solutions .hs-vps-pro-security-grid dd {
    color: #324a65;
    font-weight: 750;
}

#hosting-solutions .hs-vps-pro-recovery-actions {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 15px;
}

#hosting-solutions .hs-vps-pro-recovery-actions button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 13px;
    border: 1px solid #d8e2ec;
    border-radius: 10px;
    background: #fff;
    color: #1c3e61;
    text-align: left;
    cursor: pointer;
}

#hosting-solutions .hs-vps-pro-recovery-actions button:hover {
    border-color: #8eabc7;
    box-shadow:
        0 5px 15px
        rgba(27, 59, 92, .07);
}

#hosting-solutions .hs-vps-pro-recovery-actions strong {
    display: block;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-pro-recovery-actions small {
    display: block;
    margin-top: 4px;
    color: #7a889a;
    font-size: 8.5px;
    line-height: 1.35;
}

#hosting-solutions .hs-vps-pro-subhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #edf1f5;
}

#hosting-solutions .hs-vps-pro-subhead h5 {
    margin: 0;
    color: #203a57;
    font-size: 12px;
}

#hosting-solutions .hs-vps-pro-subhead span {
    color: #748398;
    font-size: 9px;
}

#hosting-solutions .hs-vps-pro-image-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 10px;
}

#hosting-solutions .hs-vps-pro-image-grid article {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #e0e8ef;
    border-radius: 9px;
    background: #fbfcfe;
}

#hosting-solutions .hs-vps-pro-image-grid article > div {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: #edf4fb;
    color: #356289;
    font-size: 8px;
    font-weight: 900;
}

#hosting-solutions .hs-vps-pro-image-grid strong {
    display: block;
    color: #273e58;
    font-size: 9.5px;
}

#hosting-solutions .hs-vps-pro-image-grid small {
    display: block;
    margin-top: 2px;
    color: #7a899c;
    font-size: 8px;
}

#hosting-solutions .hs-vps-pro-advanced {
    border: 1px solid #dbe4ed;
    border-radius: 12px;
    background: #fff;
}

#hosting-solutions .hs-vps-pro-advanced > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 17px;
    cursor: pointer;
}

#hosting-solutions .hs-vps-pro-advanced > summary strong,
#hosting-solutions .hs-vps-pro-advanced > summary small {
    display: block;
}

#hosting-solutions .hs-vps-pro-advanced > summary strong {
    color: #203c5b;
    font-size: 11px;
}

#hosting-solutions .hs-vps-pro-advanced > summary small {
    margin-top: 2px;
    color: #7b899a;
    font-size: 8.5px;
}

#hosting-solutions .hs-vps-pro-advanced > summary em {
    color: #7c899a;
    font-size: 8px;
    font-style: normal;
}

#hosting-solutions .hs-vps-pro-advanced-body {
    padding: 0 17px 17px;
    border-top: 1px solid #edf1f5;
}

#hosting-solutions .hs-vps-pro-operation-copy {
    max-width: 590px;
    margin-top: 6px !important;
    color: #68798d !important;
    font-size: 10.5px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

#hosting-solutions .hs-vps-pro-operation-context {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 9px;
    background: #f5f8fb;
}

#hosting-solutions .hs-vps-pro-operation-context > span {
    color: #7b899c;
    font-size: 8.5px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-pro-operation-context > strong {
    margin-right: auto;
    color: #1e3b5c;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-risk-pill {
    display: inline-flex;
    padding: 4px 7px;
    border-radius: 999px;
    background: #edf3f8;
    color: #51677f;
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-risk-pill--write {
    background: #edf5ff;
    color: #2866a5;
}

#hosting-solutions .hs-vps-risk-pill--sensitive {
    background: #fff7e8;
    color: #8a651c;
}

#hosting-solutions .hs-vps-risk-pill--destructive {
    background: #fff0f0;
    color: #9a3939;
}

#hosting-solutions .hs-vps-pro-parameter-grid,
#hosting-solutions .hs-vps-pro-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

#hosting-solutions .hs-vps-pro-field {
    display: grid;
    align-content: start;
    gap: 6px;
}

#hosting-solutions .hs-vps-pro-field > span {
    color: #213950;
    font-size: 10px;
    font-weight: 850;
}

#hosting-solutions .hs-vps-pro-field em,
#hosting-solutions .hs-vps-pro-fieldset legend em {
    margin-left: 4px;
    color: #a04444;
    font-size: 7.5px;
    font-style: normal;
    text-transform: uppercase;
}

#hosting-solutions .hs-vps-pro-field input,
#hosting-solutions .hs-vps-pro-field select {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid #cbd7e3;
    border-radius: 8px;
    background: #fff;
    color: #1c334e;
    font: inherit;
    font-size: 11px;
}

#hosting-solutions .hs-vps-pro-field input:focus,
#hosting-solutions .hs-vps-pro-field select:focus {
    border-color: #5e8fc1;
    outline:
        2px solid
        rgba(47, 104, 161, .11);
}

#hosting-solutions .hs-vps-pro-fieldset {
    min-width: 0;
    margin: 16px 0 0;
    padding: 14px;
    border: 1px solid #dce5ee;
    border-radius: 10px;
}

#hosting-solutions .hs-vps-pro-fieldset legend {
    padding: 0 5px;
    color: #29445f;
    font-size: 10px;
    font-weight: 850;
}

#hosting-solutions .hs-vps-pro-fieldset
.hs-vps-pro-fieldset {
    grid-column: 1 / -1;
}

#hosting-solutions .hs-vps-pro-array {
    grid-column: 1 / -1;
}

#hosting-solutions .hs-vps-pro-array-item {
    margin-top: 9px;
    padding: 11px;
    border: 1px solid #e2e9f0;
    border-radius: 9px;
    background: #fbfcfd;
}

#hosting-solutions .hs-vps-pro-array-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#hosting-solutions .hs-vps-pro-array-item-head strong {
    color: #415a74;
    font-size: 9px;
}

#hosting-solutions .hs-vps-pro-array-item-head button,
#hosting-solutions .hs-vps-pro-add {
    padding: 5px 8px;
    border: 1px solid #d0dbe6;
    border-radius: 7px;
    background: #fff;
    color: #35648e;
    font: inherit;
    font-size: 8.5px;
    font-weight: 800;
    cursor: pointer;
}

#hosting-solutions .hs-vps-pro-add {
    margin-top: 9px;
}

#hosting-solutions .hs-vps-pro-note,
#hosting-solutions .hs-vps-pro-action-confirmation {
    margin-top: 16px;
    padding: 12px;
    border-radius: 9px;
    background: #f5f8fb;
    color: #627489;
    font-size: 10.5px;
}

#hosting-solutions .hs-vps-pro-action-confirmation strong {
    display: block;
    color: #263f5a;
}

#hosting-solutions .hs-vps-pro-action-confirmation p {
    margin: 4px 0 0;
}

#hosting-solutions .hs-vps-pro-danger-button {
    border: 1px solid #d93644;
    background: #d93644;
    color: #fff;
}

#hosting-solutions .hs-vps-pro-danger-button:hover {
    background: #bf2d39;
}

@media (max-width: 900px) {
    #hosting-solutions .hs-vps-pro-recovery-actions {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #hosting-solutions .hs-vps-pro-image-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    #hosting-solutions .hs-vps-pro-contract-grid,
    #hosting-solutions .hs-vps-pro-metrics,
    #hosting-solutions .hs-vps-pro-security-grid,
    #hosting-solutions .hs-vps-pro-parameter-grid,
    #hosting-solutions .hs-vps-pro-grid,
    #hosting-solutions .hs-vps-pro-recovery-actions,
    #hosting-solutions .hs-vps-pro-image-grid {
        grid-template-columns: 1fr;
    }

    #hosting-solutions .hs-vps-pro-section-head,
    #hosting-solutions .hs-vps-pro-operation-context,
    #hosting-solutions .hs-vps-pro-advanced > summary {
        align-items: stretch;
        flex-direction: column;
    }

    #hosting-solutions .hs-vps-risk-pill {
        align-self: flex-start;
    }
}

/* BRITIXO_MYACCOUNT_CLIENT_VPS_PRO_CONTROLS_V4_END */
