/* =========================================================
   WEBPANDA CATALOG
   Client Services and Domains pages.
   ========================================================= */

/* =========================================================
   WEBPANDA SERVICES PAGE
   ========================================================= */

.webpanda-services-page {
    padding: 46px 0 72px;
}

/* =========================================================
   Hero
   ========================================================= */

.webpanda-services-page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding: 36px 38px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(141, 210, 0, 0.14),
            transparent 32%
        ),
        #111418;
    border-radius: 18px;
}

.webpanda-services-page-hero-copy {
    flex: 1;
}

.webpanda-services-page-hero .webpanda-eyebrow {
    margin-bottom: 10px;
}

.webpanda-services-page-hero h1 {
    margin: 0 0 9px;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.webpanda-services-page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   Hero Actions
   ========================================================= */

.webpanda-services-page-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.webpanda-services-primary-action,
.webpanda-services-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.webpanda-services-primary-action {
    background: var(--wp-green);
    color: #111418 !important;
    border: 1px solid var(--wp-green);
}

.webpanda-services-primary-action:hover,
.webpanda-services-primary-action:focus {
    background: var(--wp-green-hover);
    color: #111418 !important;
    border-color: var(--wp-green-hover);
    transform: translateY(-1px);
}

.webpanda-services-secondary-action {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.webpanda-services-secondary-action:hover,
.webpanda-services-secondary-action:focus {
    background: rgba(255, 255, 255, 0.07);
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.30);
}

/* =========================================================
   Toolbar
   ========================================================= */

.webpanda-services-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

/* Filters */

.webpanda-services-filters {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.webpanda-service-filter {
    padding: 8px 13px;
    background: #FFFFFF;
    color: #737B84;
    border: 1px solid var(--wp-border);
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.webpanda-service-filter:hover {
    border-color: rgba(141, 210, 0, 0.55);
    color: #30353A;
}

.webpanda-service-filter.active {
    background: #111418;
    color: #FFFFFF;
    border-color: #111418;
}

/* =========================================================
   Search
   ========================================================= */

.webpanda-services-search {
    position: relative;
    width: 250px;
    flex: 0 0 250px;
}

.webpanda-services-search i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #A0A6AC;
    font-size: 12px;
    pointer-events: none;
}

.webpanda-services-search input {
    width: 100%;
    height: 42px;
    padding: 0 14px 0 39px;
    background: #FFFFFF;
    color: #30353A;
    border: 1px solid var(--wp-border);
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    outline: 0;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.webpanda-services-search input:focus {
    border-color: var(--wp-green);
    box-shadow:
        0 0 0 3px rgba(141, 210, 0, 0.10);
}

.webpanda-services-search input::placeholder {
    color: #A0A6AC;
}

/* =========================================================
   Services Card
   ========================================================= */

.webpanda-services-list-card {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--wp-border);
    border-radius: 16px;
    box-shadow:
        0 10px 28px rgba(17, 20, 24, 0.05);
}

/* Heading */

.webpanda-services-list-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 22px;
    border-bottom: 1px solid #EBEDF0;
}

.webpanda-services-list-heading > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.webpanda-services-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(141, 210, 0, 0.11);
    color: var(--wp-green);
    border-radius: 9px;
    font-size: 13px;
}

.webpanda-services-list-heading h2 {
    margin: 0 0 2px;
    color: #24282E;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.webpanda-services-list-heading #webpandaServiceCount {
    display: block;
    color: #91979E;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 500;
}

/* =========================================================
   DataTables Cleanup
   ========================================================= */

.webpanda-services-page .dataTables_filter {
    display: none !important;
}

.webpanda-services-page .dataTables_info {
    padding: 18px 0 0 !important;
    color: #858C94;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

.webpanda-services-page .dataTables_length {
    padding-top: 18px;
    color: #858C94;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

.webpanda-services-page .dataTables_paginate {
    padding-top: 14px !important;
}

/* =========================================================
   Services Table
   ========================================================= */

.webpanda-services-list-card .table-container {
    overflow: visible;
}

.webpanda-services-table {
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
}

.webpanda-services-table thead th {
    padding: 13px 14px !important;
    background: #FAFBFB !important;
    color: #949AA1 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #E8EAED !important;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
}

.webpanda-services-table tbody tr {
    cursor: pointer;
    transition:
        background-color 0.2s ease;
}

.webpanda-services-table tbody tr:hover {
    background: #FAFCF7;
}

.webpanda-services-table tbody td {
    padding: 15px 14px !important;
    color: #4B525A;
    border-top: 0 !important;
    border-bottom: 1px solid #ECEEF0 !important;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
}

.webpanda-services-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

/* =========================================================
   Icon
   ========================================================= */

.webpanda-services-icon-column {
    width: 72px;
}

.webpanda-services-service-icon {
    width: 72px;
    text-align: center;
}

.webpanda-services-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    background: rgba(141, 210, 0, 0.10);
    color: var(--wp-green);
    border-radius: 10px;
    font-size: 14px;
}

.webpanda-services-icon-box img {
    width: 22px;
    height: auto;
}

/* =========================================================
   Product
   ========================================================= */

.webpanda-services-product strong {
    display: block;
    margin-bottom: 3px;
    color: #24282E;
    font-size: 12px;
    font-weight: 700;
}

.webpanda-services-product a {
    color: #63829F !important;
    font-size: 10px;
    text-decoration: none !important;
}

.webpanda-services-product a:hover {
    color: var(--wp-green) !important;
}

.webpanda-services-no-domain {
    color: #A1A7AD;
    font-size: 10px;
}

/* =========================================================
   Billing / Due
   ========================================================= */

.webpanda-services-billing strong {
    display: block;
    color: #3B4147;
    font-size: 11px;
    font-weight: 600;
}

.webpanda-services-billing span {
    display: block;
    margin-top: 2px;
    color: #989EA4;
    font-size: 9px;
}

.webpanda-services-due {
    color: #737B84 !important;
}

/* =========================================================
   Status
   ========================================================= */

.webpanda-status {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 9px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 700;
}

.webpanda-status-active {
    background: rgba(141, 210, 0, 0.13);
    color: #5D8A00;
}

.webpanda-status-pending {
    background: rgba(235, 170, 0, 0.13);
    color: #A87400;
}

.webpanda-status-suspended {
    background: rgba(235, 104, 0, 0.12);
    color: #B55400;
}

.webpanda-status-terminated,
.webpanda-status-cancelled {
    background: rgba(210, 50, 60, 0.10);
    color: #B53B43;
}

/* =========================================================
   Manage Button
   ========================================================= */

.webpanda-services-manage-column {
    width: 115px;
}

.webpanda-services-manage {
    text-align: right;
}

.webpanda-services-manage-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #454C53 !important;
    border: 1px solid #DDE1E4;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 600;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.webpanda-services-manage-button i {
    color: var(--wp-green);
    font-size: 8px;
}

.webpanda-services-manage-button:hover,
.webpanda-services-manage-button:focus {
    background: rgba(141, 210, 0, 0.07);
    color: #24282E !important;
    border-color: rgba(141, 210, 0, 0.50);
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {
    .webpanda-services-page-hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }
    .webpanda-services-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
    .webpanda-services-filters {
        overflow-x: auto;
        padding-bottom: 3px;
    }
    .webpanda-service-filter {
        flex: 0 0 auto;
    }
    .webpanda-services-search {
        width: 100%;
        flex-basis: auto;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .webpanda-services-page {
        padding: 32px 0 52px;
    }
    .webpanda-services-page-hero {
        padding: 28px 24px;
    }
    .webpanda-services-page-hero h1 {
        font-size: 29px;
    }
    .webpanda-services-page-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }
    .webpanda-services-primary-action,
    .webpanda-services-secondary-action {
        width: 100%;
    }
    .webpanda-services-list-card {
        overflow-x: auto;
    }
    .webpanda-services-table {
        min-width: 760px;
    }
}

/* =========================================================
   SERVICES TABLE — INNER SPACING
   ========================================================= */

.webpanda-services-list-card .dataTables_wrapper {
    padding: 0 22px 18px;
}

/* Keep the table contained inside the padded area */

.webpanda-services-list-card .webpanda-services-table {
    width: 100% !important;
}

/* Give the top DataTables info a little breathing room */

.webpanda-services-list-card .dataTables_info {
    padding-top: 16px !important;
    padding-bottom: 10px !important;
}

/* Mobile */

@media (max-width: 767px) {
    .webpanda-services-list-card .dataTables_wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* =========================================================
   WEBPANDA DOMAINS PAGE
   ========================================================= */

.webpanda-domains-page {
    padding: 46px 0 72px;
}

.webpanda-domains-warning {
    margin-top: 30px;
}

/* =========================================================
   Hero
   ========================================================= */

.webpanda-domains-page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding: 36px 38px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(141, 210, 0, 0.14),
            transparent 32%
        ),
        #111418;
    border-radius: 18px;
}

.webpanda-domains-page-hero-copy {
    flex: 1;
}

.webpanda-domains-page-hero .webpanda-eyebrow {
    margin-bottom: 10px;
}

.webpanda-domains-page-hero h1 {
    margin: 0 0 9px;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.webpanda-domains-page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   Hero Actions
   ========================================================= */

.webpanda-domains-page-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.webpanda-domains-primary-action,
.webpanda-domains-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.webpanda-domains-primary-action {
    background: var(--wp-green);
    color: #111418 !important;
    border: 1px solid var(--wp-green);
}

.webpanda-domains-primary-action:hover,
.webpanda-domains-primary-action:focus {
    background: var(--wp-green-hover);
    color: #111418 !important;
    border-color: var(--wp-green-hover);
    transform: translateY(-1px);
}

.webpanda-domains-secondary-action {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.webpanda-domains-secondary-action:hover,
.webpanda-domains-secondary-action:focus {
    background: rgba(255, 255, 255, 0.07);
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.30);
}

/* =========================================================
   Filters / Search
   ========================================================= */

.webpanda-domains-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.webpanda-domains-filters {
    display: flex;
    align-items: center;
    gap: 7px;
}

.webpanda-domain-filter {
    padding: 8px 13px;
    background: #FFFFFF;
    color: #737B84;
    border: 1px solid var(--wp-border);
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
}

.webpanda-domain-filter:hover {
    color: #30353A;
    border-color: rgba(141, 210, 0, 0.55);
}

.webpanda-domain-filter.active {
    background: #111418;
    color: #FFFFFF;
    border-color: #111418;
}

/* Search */

.webpanda-domains-search {
    position: relative;
    width: 250px;
    flex: 0 0 250px;
}

.webpanda-domains-search i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #A0A6AC;
    font-size: 12px;
    pointer-events: none;
}

.webpanda-domains-search input {
    width: 100%;
    height: 42px;
    padding: 0 14px 0 39px;
    background: #FFFFFF;
    color: #30353A;
    border: 1px solid var(--wp-border);
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    outline: 0;
}

.webpanda-domains-search input:focus {
    border-color: var(--wp-green);
    box-shadow:
        0 0 0 3px rgba(141, 210, 0, 0.10);
}

/* =========================================================
   Domain Card
   ========================================================= */

.webpanda-domains-list-card {
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--wp-border);
    border-radius: 16px;
    box-shadow:
        0 10px 28px rgba(17, 20, 24, 0.05);
}

/* Heading */

.webpanda-domains-list-heading {
    padding: 19px 22px;
    border-bottom: 1px solid #EBEDF0;
}

.webpanda-domains-list-title {
    display: flex;
    align-items: center;
    gap: 11px;
}

.webpanda-domains-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(141, 210, 0, 0.11);
    color: var(--wp-green);
    border-radius: 9px;
    font-size: 13px;
}

.webpanda-domains-list-heading h2 {
    margin: 0 0 2px;
    color: #24282E;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

#webpandaDomainCount {
    display: block;
    color: #91979E;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
}



/* =========================================================
   DataTables
   ========================================================= */

.webpanda-domains-list-card .dataTables_wrapper {
    padding: 0 22px 18px;
}

.webpanda-domains-page .dataTables_filter {
    display: none !important;
}

.webpanda-domains-page .dataTables_info {
    padding-top: 16px !important;
    padding-bottom: 10px !important;
    color: #858C94;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

.webpanda-domains-page .dataTables_length {
    padding-top: 18px;
    color: #858C94;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

.webpanda-domains-page .dataTables_paginate {
    padding-top: 14px !important;
}

/* =========================================================
   Table
   ========================================================= */

.webpanda-domains-table {
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
}

.webpanda-domains-table thead th {
    padding: 13px 12px !important;
    background: #FAFBFB !important;
    color: #949AA1 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #E8EAED !important;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
}

.webpanda-domains-table tbody tr {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.webpanda-domains-table tbody tr:hover {
    background: #FAFCF7;
}

.webpanda-domains-table tbody td {
    padding: 15px 12px !important;
    color: #4B525A;
    border-top: 0 !important;
    border-bottom: 1px solid #ECEEF0 !important;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

.webpanda-domains-table tbody tr:last-child td {
    border-bottom: 0 !important;
}



/* =========================================================
   SSL Icon
   ========================================================= */

.webpanda-domain-icon-column,
.webpanda-domain-service-icon {
    width: 58px;
}

.webpanda-domain-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    background: rgba(141, 210, 0, 0.10);
    color: var(--wp-green);
    border-radius: 10px;
    font-size: 14px;
}

.webpanda-domain-icon-box img {
    width: 22px;
    height: auto;
}

/* =========================================================
   Domain
   ========================================================= */

.webpanda-domain-name > a {
    display: block;
    margin-bottom: 4px;
    color: #63829F !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
}

.webpanda-domain-name > a:hover {
    color: var(--wp-green) !important;
}

.webpanda-domain-autorenew {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7B838B;
    font-size: 9px;
}

.webpanda-domain-autorenew i {
    color: var(--wp-green);
    font-size: 8px;
}

.webpanda-domain-autorenew .webpanda-domain-autorenew-off {
    color: #C15B63;
}

/* =========================================================
   Dates
   ========================================================= */

.webpanda-domain-date {
    max-width: 150px;
    color: #666E76 !important;
    line-height: 1.55;
}

/* =========================================================
   Status
   ========================================================= */

.webpanda-domain-status {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 9px;
    background: rgba(141, 210, 0, 0.13);
    color: #5D8A00;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 700;
}

.webpanda-domain-status-expired,
.webpanda-domain-status-cancelled {
    background: rgba(210, 50, 60, 0.10);
    color: #B53B43;
}

.webpanda-domain-status-pending {
    background: rgba(235, 170, 0, 0.13);
    color: #A87400;
}

.webpanda-domain-expiring {
    display: block;
    margin-top: 4px;
    color: #B47B00;
    font-size: 8px;
}

/* =========================================================
   Manage
   ========================================================= */

.webpanda-domain-manage-column {
    width: 110px;
}

.webpanda-domain-manage {
    text-align: right;
}

.webpanda-domain-manage-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #454C53 !important;
    border: 1px solid #DDE1E4;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 600;
    text-decoration: none !important;
}

.webpanda-domain-manage-button i {
    color: var(--wp-green);
    font-size: 8px;
}

.webpanda-domain-manage-button:hover,
.webpanda-domain-manage-button:focus {
    background: rgba(141, 210, 0, 0.07);
    color: #24282E !important;
    border-color: rgba(141, 210, 0, 0.50);
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {
    .webpanda-domains-page-hero {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }
    .webpanda-domains-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
    .webpanda-domains-search {
        width: 100%;
        flex-basis: auto;
    }

}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .webpanda-domains-page {
        padding: 32px 0 52px;
    }
    .webpanda-domains-page-hero {
        padding: 28px 24px;
    }
    .webpanda-domains-page-hero h1 {
        font-size: 29px;
    }
    .webpanda-domains-page-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }
    .webpanda-domains-primary-action,
    .webpanda-domains-secondary-action {
        width: 100%;
    }
    .webpanda-domains-list-card {
        overflow-x: auto;
    }
    .webpanda-domains-list-card .dataTables_wrapper {
        padding-left: 14px;
        padding-right: 14px;
    }
    .webpanda-domains-table {
        min-width: 900px;
    }
}


/* =========================================================
   WEBPANDA DOMAIN DETAILS
   clientareadomaindetails.tpl
   ========================================================= */


/* =========================================================
   Page
   ========================================================= */

.webpanda-domain-details-page {
    margin-bottom: 50px;

    font-family: "Montserrat", sans-serif;
}

.webpanda-domain-detail-tab-content {
    margin: 0;
}

.webpanda-domain-detail-tab-content > .tab-pane {
    padding: 0;
}


/* =========================================================
   Hero
   ========================================================= */

.webpanda-domain-detail-hero {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 38px;

    min-height: 215px;

    margin-bottom: 22px;
    padding: 36px 40px;

    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(141, 210, 0, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #111418 0%,
            #182017 100%
        );

    border-radius: 18px;
}

.webpanda-domain-detail-hero-copy {
    min-width: 0;
    max-width: 680px;
}

.webpanda-domain-detail-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--wp-green);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.webpanda-domain-detail-hero h1 {
    margin: 0 0 8px;

    color: #FFFFFF;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;

    overflow-wrap: anywhere;
}

.webpanda-domain-detail-hero-copy > p {
    max-width: 610px;

    margin: 0;

    color: rgba(255, 255, 255, 0.57);

    font-size: 10px;
    line-height: 1.65;
}


/* =========================================================
   Hero Actions
   ========================================================= */

.webpanda-domain-detail-hero-actions {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 19px;
}

.webpanda-domain-detail-back,
.webpanda-domain-detail-visit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 38px;

    padding: 0 13px;

    border-radius: 8px;

    font-size: 8px;
    font-weight: 700;

    text-decoration: none !important;
}

.webpanda-domain-detail-back {
    padding-left: 0;

    color: rgba(255, 255, 255, 0.68) !important;
}

.webpanda-domain-detail-back i {
    color: var(--wp-green);
}

.webpanda-domain-detail-back:hover {
    color: #FFFFFF !important;
}

.webpanda-domain-detail-visit {
    background: rgba(255, 255, 255, 0.035);

    color: rgba(255, 255, 255, 0.82) !important;

    border: 1px solid rgba(255, 255, 255, 0.18);
}

.webpanda-domain-detail-visit:hover {
    background: rgba(255, 255, 255, 0.08);

    color: #FFFFFF !important;

    border-color: rgba(255, 255, 255, 0.30);
}


/* =========================================================
   Hero Summary
   ========================================================= */

.webpanda-domain-detail-hero-summary {
    display: flex;

    flex: 0 0 auto;
    flex-direction: column;

    align-items: flex-end;

    min-width: 215px;

    padding-left: 30px;

    border-left:
        1px solid rgba(255, 255, 255, 0.11);
}

.webpanda-domain-detail-summary-label {
    margin-bottom: 6px;

    color: var(--wp-green);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.11em;
}


/* =========================================================
   Domain Status
   ========================================================= */

.webpanda-domain-detail-status {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 27px;

    padding: 0 11px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 700;
}

.webpanda-domain-detail-status-active {
    background: rgba(141, 210, 0, 0.16);

    color: #A8E53D;
}

.webpanda-domain-detail-status-pending {
    background: rgba(255, 255, 255, 0.09);

    color: rgba(255, 255, 255, 0.75);
}

.webpanda-domain-detail-status-expired,
.webpanda-domain-detail-status-cancelled {
    background: rgba(218, 75, 86, 0.16);

    color: #F09199;
}

.webpanda-domain-detail-status-transferredaway {
    background: rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   Hero Meta
   ========================================================= */

.webpanda-domain-detail-summary-meta {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    margin-top: 14px;
}

.webpanda-domain-detail-summary-meta span {
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.09em;
}

.webpanda-domain-detail-summary-meta strong {
    color: rgba(255, 255, 255, 0.76);

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   Cards
   ========================================================= */

.webpanda-domain-detail-card {
    overflow: hidden;

    margin-bottom: 22px;

    background: #FFFFFF;

    border: 1px solid var(--wp-border);
    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(17, 20, 24, 0.04);
}

.webpanda-domain-detail-card-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 21px 23px;

    border-bottom: 1px solid #ECEEEF;
}

.webpanda-domain-detail-card-icon {
    display: flex;

    flex: 0 0 38px;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: #EFF7E2;

    color: #68A000;

    border-radius: 9px;

    font-size: 12px;
}

.webpanda-domain-detail-card-icon-warning {
    background: #FFF0F1;

    color: #B94C56;
}

.webpanda-domain-detail-card-heading h2 {
    margin: 0 0 3px;

    color: #30353A;

    font-size: 14px;
    font-weight: 700;
}

.webpanda-domain-detail-card-heading p {
    margin: 0;

    color: #92999F;

    font-size: 8px;
    line-height: 1.5;
}

.webpanda-domain-detail-card-body {
    padding: 23px;
}


/* =========================================================
   Alerts
   ========================================================= */

.webpanda-domain-detail-alerts {
    margin-bottom: 17px;
}

.webpanda-domain-detail-alerts .alert {
    margin: 0;

    border-radius: 10px;
}


/* =========================================================
   Section Heading
   ========================================================= */

.webpanda-domain-detail-section-heading {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 17px;
}

.webpanda-domain-detail-section-number {
    display: flex;

    flex: 0 0 36px;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    background: #EFF7E2;

    color: #5C9103;

    border-radius: 9px;

    font-size: 8px;
    font-weight: 700;
}

.webpanda-domain-detail-section-heading h3 {
    margin: 1px 0 3px;

    color: #30353A;

    font-size: 11px;
    font-weight: 700;
}

.webpanda-domain-detail-section-heading p {
    margin: 0;

    color: #92999F;

    font-size: 8px;
    line-height: 1.55;
}


/* =========================================================
   Overview Facts
   ========================================================= */

.webpanda-domain-detail-facts {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    margin-left: 49px;

    border: 1px solid #E4E7E9;
    border-radius: 11px;
}

.webpanda-domain-detail-fact {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 74px;

    padding: 14px 16px;

    border-right: 1px solid #ECEEEF;
    border-bottom: 1px solid #ECEEEF;
}

.webpanda-domain-detail-fact:nth-child(2n) {
    border-right: 0;
}

.webpanda-domain-detail-fact:nth-last-child(-n+2) {
    border-bottom: 0;
}

.webpanda-domain-detail-fact span:first-child {
    margin-bottom: 5px;

    color: #949BA1;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.webpanda-domain-detail-fact > strong {
    color: #30353A;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.webpanda-domain-detail-fact small {
    margin-top: 3px;

    color: #969DA3;

    font-size: 7px;
}


/* =========================================================
   Setting Status
   ========================================================= */

.webpanda-domain-detail-setting-status {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    width: fit-content;

    padding: 5px 8px;

    border-radius: 999px;

    font-size: 7px;
    font-weight: 700;
}

.webpanda-domain-detail-setting-status.is-enabled {
    background: #EDF7DE;

    color: #557F08;
}

.webpanda-domain-detail-setting-status.is-disabled {
    background: #F0F2F3;

    color: #7E858B;
}

.webpanda-domain-detail-setting-status.is-warning {
    background: #FFF0F1;

    color: #B94C56;
}


/* =========================================================
   Divider
   ========================================================= */

.webpanda-domain-detail-divider {
    margin: 24px 0;

    border-top: 1px solid #ECEEEF;
}


/* =========================================================
   SSL
   ========================================================= */

.webpanda-domain-detail-ssl {
    margin-left: 49px;

    overflow: hidden;

    background: #F8FBF4;

    border: 1px solid #DFE7D6;
    border-radius: 11px;
}

.webpanda-domain-detail-ssl-status {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 17px;

    border-bottom: 1px solid #E2E9DA;
}

.webpanda-domain-detail-ssl-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    background: #EAF5D7;

    border-radius: 9px;
}

.webpanda-domain-detail-ssl-status span {
    display: block;

    margin-bottom: 3px;

    color: #7F8A78;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.webpanda-domain-detail-ssl-status strong {
    color: #30353A;

    font-size: 10px;
    font-weight: 700;
}

.webpanda-domain-detail-ssl-facts {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.webpanda-domain-detail-ssl-facts > div {
    min-width: 0;

    padding: 13px 16px;

    border-right: 1px solid #E2E9DA;
}

.webpanda-domain-detail-ssl-facts > div:last-child {
    border-right: 0;
}

.webpanda-domain-detail-ssl-facts span {
    display: block;

    margin-bottom: 4px;

    color: #899383;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.07em;
}

.webpanda-domain-detail-ssl-facts strong {
    color: #4A5247;

    font-size: 8px;
    font-weight: 600;

    overflow-wrap: anywhere;
}


/* =========================================================
   Registrar / Hooks
   ========================================================= */

.webpanda-domain-detail-module-output,
.webpanda-domain-detail-hook-output {
    margin-top: 18px;
}

.webpanda-domain-detail-module-output:first-child,
.webpanda-domain-detail-hook-output:first-child {
    margin-top: 0;
}


/* =========================================================
   Quick Management Actions
   ========================================================= */

.webpanda-domain-detail-actions-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    padding: 20px 23px;
}

.webpanda-domain-detail-action {
    display: grid;

    grid-template-columns:
        38px minmax(0, 1fr) 18px;

    align-items: center;

    gap: 11px;

    min-height: 78px;

    padding: 13px 14px;

    background: #FAFBFB;

    color: #30353A !important;

    border: 1px solid #E4E7E9;
    border-radius: 10px;

    text-decoration: none !important;

    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.webpanda-domain-detail-action:hover {
    background: #F8FCEE;

    border-color: rgba(141, 210, 0, 0.45);

    transform: translateY(-1px);
}

.webpanda-domain-detail-action-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    background: #EFF7E2;

    color: #659B08;

    border-radius: 9px;
}

.webpanda-domain-detail-action > span:nth-child(2) {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.webpanda-domain-detail-action strong {
    margin-bottom: 3px;

    color: #30353A;

    font-size: 9px;
    font-weight: 700;
}

.webpanda-domain-detail-action small {
    color: #92999F;

    font-size: 7px;
    line-height: 1.5;
}

.webpanda-domain-detail-action > i:last-child {
    color: var(--wp-green);

    font-size: 8px;
}


/* =========================================================
   Setting Panel
   ========================================================= */

.webpanda-domain-detail-setting-panel {
    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr) auto;

    align-items: center;

    gap: 14px;

    padding: 18px;

    background: #FAFBFB;

    border: 1px solid #E4E7E9;
    border-radius: 11px;
}

.webpanda-domain-detail-setting-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: #EFF7E2;

    color: #659B08;

    border-radius: 9px;
}

.webpanda-domain-detail-setting-copy > span {
    display: block;

    margin-bottom: 3px;

    color: #949BA1;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.webpanda-domain-detail-setting-copy > strong {
    display: block;

    margin-bottom: 4px;

    color: #30353A;

    font-size: 11px;
    font-weight: 700;
}

.webpanda-domain-detail-setting-copy p {
    margin: 0;

    color: #8D949A;

    font-size: 8px;
    line-height: 1.5;
}

.webpanda-domain-detail-setting-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 45px;
    min-height: 27px;

    padding: 0 9px;

    border-radius: 999px;

    font-size: 7px;
    font-weight: 700;
}

.webpanda-domain-detail-setting-badge.is-enabled {
    background: #EAF5D7;

    color: #527F00;
}

.webpanda-domain-detail-setting-badge.is-disabled {
    background: #F0F2F3;

    color: #737B82;
}

.webpanda-domain-detail-setting-badge.is-warning {
    background: #FFF0F1;

    color: #B94C56;
}


/* =========================================================
   Info / Warning Notes
   ========================================================= */

.webpanda-domain-detail-info-note,
.webpanda-domain-detail-warning-note {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;
    padding: 15px 16px;

    border-radius: 10px;
}

.webpanda-domain-detail-info-note {
    background: #F8FBF4;

    border: 1px solid #DFE6D6;
}

.webpanda-domain-detail-warning-note {
    background: #FFF5F5;

    border: 1px solid #ECD8DA;
}

.webpanda-domain-detail-info-note > div,
.webpanda-domain-detail-warning-note > div {
    display: flex;

    flex: 0 0 32px;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 8px;
}

.webpanda-domain-detail-info-note > div {
    background: #EAF5D7;

    color: #669F0A;
}

.webpanda-domain-detail-warning-note > div {
    background: #F9E4E6;

    color: #B94C56;
}

.webpanda-domain-detail-info-note p,
.webpanda-domain-detail-warning-note p {
    margin: 3px 0 0;

    font-size: 8px;
    line-height: 1.6;
}

.webpanda-domain-detail-info-note p {
    color: #737C6D;
}

.webpanda-domain-detail-warning-note p {
    color: #8D6F74;
}


/* =========================================================
   Form
   ========================================================= */

.webpanda-domain-detail-form {
    margin: 0;
}

.webpanda-domain-detail-form-row {
    display: grid;

    grid-template-columns:
        150px minmax(0, 1fr);

    align-items: center;

    gap: 16px;

    margin-bottom: 13px;
}

.webpanda-domain-detail-form-row label {
    margin: 0;

    color: #555D63;

    font-size: 9px;
    font-weight: 600;
}

.webpanda-domain-details-page .form-control {
    min-height: 40px;

    background-color: #FFFFFF;

    color: #40474D;

    border: 1px solid #DDE1E4;
    border-radius: 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 9px;

    box-shadow: none;
}

.webpanda-domain-details-page .form-control:focus {
    border-color: var(--wp-green);

    outline: none;

    box-shadow:
        0 0 0 3px rgba(141, 210, 0, 0.10);
}


/* =========================================================
   Nameserver Choices
   ========================================================= */

.webpanda-domain-detail-choice-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 20px;
}

.webpanda-domain-detail-choice {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0;
    padding: 14px 15px;

    background: #FAFBFB;

    border: 1px solid #E4E7E9;
    border-radius: 10px;

    cursor: pointer;
}

.webpanda-domain-detail-choice:has(input:checked) {
    background: #F8FCEE;

    border-color: rgba(141, 210, 0, 0.55);
}

.webpanda-domain-detail-choice input {
    margin-top: 2px;

    accent-color: var(--wp-green);
}

.webpanda-domain-detail-choice > span {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.webpanda-domain-detail-choice strong {
    color: #30353A;

    font-size: 9px;
    font-weight: 700;
}

.webpanda-domain-detail-choice small {
    color: #90979D;

    font-size: 7px;
    line-height: 1.55;
}


/* =========================================================
   Nameservers
   ========================================================= */

.webpanda-domain-detail-nameservers {
    max-width: 700px;
}


/* =========================================================
   Buttons
   ========================================================= */

.webpanda-domain-detail-form-actions {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    margin-top: 22px;
}

.webpanda-domain-detail-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 39px;

    padding: 0 14px;

    background: #FFFFFF;

    color: #555D63 !important;

    border: 1px solid #D9DEE2;
    border-radius: 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    font-weight: 700;

    text-decoration: none !important;

    cursor: pointer;

    box-shadow: none;
}

.webpanda-domain-detail-button:hover,
.webpanda-domain-detail-button:focus {
    background: #F8FCEE;

    color: #4D7700 !important;

    border-color: rgba(141, 210, 0, 0.50);

    outline: none;
}

.webpanda-domain-detail-button-primary {
    background: var(--wp-green);

    color: #111418 !important;

    border-color: var(--wp-green);
}

.webpanda-domain-detail-button-primary:hover,
.webpanda-domain-detail-button-primary:focus {
    background: var(--wp-green-hover);

    color: #111418 !important;

    border-color: var(--wp-green-hover);
}

.webpanda-domain-detail-button-danger {
    background: #D94B56;

    color: #FFFFFF !important;

    border-color: #D94B56;
}

.webpanda-domain-detail-button-danger:hover,
.webpanda-domain-detail-button-danger:focus {
    background: #C83F4A;

    color: #FFFFFF !important;

    border-color: #C83F4A;
}


/* =========================================================
   Addons
   ========================================================= */

.webpanda-domain-detail-addons {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.webpanda-domain-detail-addon {
    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr) auto;

    align-items: center;

    gap: 14px;

    padding: 16px;

    background: #FAFBFB;

    border: 1px solid #E4E7E9;
    border-radius: 10px;
}

.webpanda-domain-detail-addon-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: #EFF7E2;

    color: #659B08;

    border-radius: 9px;
}

.webpanda-domain-detail-addon-copy h3 {
    margin: 0 0 4px;

    color: #30353A;

    font-size: 10px;
    font-weight: 700;
}

.webpanda-domain-detail-addon-copy p {
    margin: 0;

    color: #90979D;

    font-size: 8px;
    line-height: 1.55;
}

.webpanda-domain-detail-addon-action {
    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0;
}


/* =========================================================
   WEBPANDA DOMAIN MANAGEMENT SIDEBARS
   Domain Details + Domain Contact Information
   ========================================================= */

body:has(.webpanda-domain-details-page)
.sidebar .panel-sidebar,
body:has(.webpanda-domain-details-page)
.sidebar .card,
body:has(.webpanda-domain-contact-page)
.sidebar .panel-sidebar,
body:has(.webpanda-domain-contact-page)
.sidebar .card {
    overflow: hidden;

    margin-bottom: 16px;

    background: #FFFFFF;

    border: 1px solid #E1E4E7;
    border-radius: 13px;

    box-shadow:
        0 10px 28px rgba(17, 20, 24, 0.05);
}


body:has(.webpanda-domain-details-page)
.sidebar .panel-sidebar .card-header,
body:has(.webpanda-domain-details-page)
.sidebar .panel-sidebar .panel-heading,
body:has(.webpanda-domain-details-page)
.sidebar > .card .card-header,
body:has(.webpanda-domain-contact-page)
.sidebar .panel-sidebar .card-header,
body:has(.webpanda-domain-contact-page)
.sidebar .panel-sidebar .panel-heading,
body:has(.webpanda-domain-contact-page)
.sidebar > .card .card-header {
    padding: 15px 16px;

    background: #FFFFFF;

    color: #30353A;

    border-bottom: 1px solid #ECEEEF;
}


body:has(.webpanda-domain-details-page)
.sidebar .panel-title,
body:has(.webpanda-domain-contact-page)
.sidebar .panel-title {
    margin: 0;

    color: #30353A;

    font-size: 11px;
    font-weight: 700;
}


body:has(.webpanda-domain-details-page)
.sidebar .panel-title > i:first-child,
body:has(.webpanda-domain-contact-page)
.sidebar .panel-title > i:first-child {
    margin-right: 7px;

    color: var(--wp-green);
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group {
    margin: 0;

    border: 0;
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item {
    position: relative;

    padding: 11px 15px;

    background: #FFFFFF;

    color: #697178 !important;

    border: 0;
    border-bottom: 1px solid #ECEEEF;

    font-size: 9px;
    line-height: 1.4;

    text-decoration: none !important;

    transition:
        background-color 0.18s ease,
        color 0.18s ease;
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item:last-child,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item:last-child {
    border-bottom: 0;
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item i,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item i {
    width: 16px;

    margin-right: 5px;

    color: #7D858C;

    text-align: center;
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item:hover,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item:hover {
    background: #F8FCEE;

    color: #4D7700 !important;
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item:hover i,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item:hover i {
    color: var(--wp-green);
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item.active,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item.active {
    background: #F1F9E4 !important;

    color: #4D7700 !important;

    font-weight: 700;
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item.active::before,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item.active::before {
    content: "";

    position: absolute;

    top: 8px;
    bottom: 8px;
    left: 0;

    width: 3px;

    background: var(--wp-green);

    border-radius: 0 3px 3px 0;
}


body:has(.webpanda-domain-details-page)
.sidebar .list-group-item.active i,
body:has(.webpanda-domain-contact-page)
.sidebar .list-group-item.active i {
    color: var(--wp-green);
}


/* =========================================================
   DOMAIN DETAILS — Tablet
   ========================================================= */

@media (max-width: 991px) {

    .webpanda-domain-detail-hero {
        align-items: flex-start;
        flex-direction: column;

        min-height: 0;
    }

    .webpanda-domain-detail-hero-summary {
        align-items: flex-start;

        width: 100%;

        padding-top: 18px;
        padding-left: 0;

        border-top:
            1px solid rgba(255, 255, 255, 0.11);
        border-left: 0;
    }

    .webpanda-domain-detail-summary-meta {
        align-items: flex-start;
    }

    .webpanda-domain-detail-actions-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   DOMAIN DETAILS — Mobile
   ========================================================= */

@media (max-width: 767px) {

    .webpanda-domain-detail-hero {
        padding: 27px 23px;
    }

    .webpanda-domain-detail-hero h1 {
        font-size: 24px;
    }

    .webpanda-domain-detail-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .webpanda-domain-detail-back,
    .webpanda-domain-detail-visit {
        width: 100%;

        padding-right: 13px;
        padding-left: 13px;
    }

    .webpanda-domain-detail-card-body {
        padding: 18px;
    }

    .webpanda-domain-detail-facts,
    .webpanda-domain-detail-ssl {
        margin-left: 0;
    }

    .webpanda-domain-detail-facts {
        grid-template-columns: 1fr;
    }

    .webpanda-domain-detail-fact,
    .webpanda-domain-detail-fact:nth-child(2n),
    .webpanda-domain-detail-fact:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid #ECEEEF;
    }

    .webpanda-domain-detail-fact:last-child {
        border-bottom: 0;
    }

    .webpanda-domain-detail-ssl-facts {
        grid-template-columns: 1fr;
    }

    .webpanda-domain-detail-ssl-facts > div {
        border-right: 0;
        border-bottom: 1px solid #E2E9DA;
    }

    .webpanda-domain-detail-ssl-facts > div:last-child {
        border-bottom: 0;
    }

    .webpanda-domain-detail-setting-panel {
        grid-template-columns:
            40px minmax(0, 1fr);
    }

    .webpanda-domain-detail-setting-badge {
        grid-column: 1 / -1;

        width: fit-content;
    }

    .webpanda-domain-detail-choice-grid {
        grid-template-columns: 1fr;
    }

    .webpanda-domain-detail-form-row {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    .webpanda-domain-detail-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .webpanda-domain-detail-form-actions
    .webpanda-domain-detail-button {
        width: 100%;
    }

    .webpanda-domain-detail-addon {
        grid-template-columns:
            40px minmax(0, 1fr);
    }

    .webpanda-domain-detail-addon-action {
        grid-column: 1 / -1;

        flex-wrap: wrap;
    }

    .webpanda-domain-detail-addon-action
    .webpanda-domain-detail-button {
        flex: 1;
    }

}


/* =========================================================
   WEBPANDA DOMAIN CONTACT INFORMATION
   clientareadomaincontactinfo.tpl
   ========================================================= */


/* =========================================================
   Page
   ========================================================= */

.webpanda-domain-contact-page {
    margin-bottom: 50px;

    font-family: "Montserrat", sans-serif;
}

.webpanda-domain-contact-message {
    margin-bottom: 18px;
}


/* =========================================================
   Hero
   ========================================================= */

.webpanda-domain-contact-hero {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    min-height: 205px;

    margin-bottom: 22px;
    padding: 34px 40px;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(141, 210, 0, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #111418 0%,
            #182017 100%
        );

    border-radius: 18px;
}

.webpanda-domain-contact-hero-copy {
    min-width: 0;
    max-width: 690px;
}

.webpanda-domain-contact-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--wp-green);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.webpanda-domain-contact-hero h1 {
    margin: 0;

    color: #FFFFFF;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.webpanda-domain-contact-domain {
    margin-top: 7px;

    color: #A8E53D;

    font-size: 11px;
    font-weight: 600;

    overflow-wrap: anywhere;
}

.webpanda-domain-contact-hero-copy > p {
    max-width: 620px;

    margin: 9px 0 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 9px;
    line-height: 1.65;
}

.webpanda-domain-contact-hero-actions {
    margin-top: 19px;
}

.webpanda-domain-contact-back {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.70) !important;

    font-size: 8px;
    font-weight: 700;

    text-decoration: none !important;
}

.webpanda-domain-contact-back i {
    color: var(--wp-green);
}

.webpanda-domain-contact-back:hover {
    color: #FFFFFF !important;
}

.webpanda-domain-contact-hero-icon {
    display: flex;

    flex: 0 0 94px;

    align-items: center;
    justify-content: center;

    width: 94px;
    height: 94px;

    background: rgba(141, 210, 0, 0.10);

    color: var(--wp-green);

    border: 1px solid rgba(141, 210, 0, 0.18);
    border-radius: 22px;

    font-size: 28px;
}


/* =========================================================
   Main Card
   ========================================================= */

.webpanda-domain-contact-card {
    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid var(--wp-border);
    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(17, 20, 24, 0.04);
}

.webpanda-domain-contact-card-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 21px 23px;

    border-bottom: 1px solid #ECEEEF;
}

.webpanda-domain-contact-card-icon {
    display: flex;

    flex: 0 0 38px;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    background: #EFF7E2;

    color: #68A000;

    border-radius: 9px;

    font-size: 12px;
}

.webpanda-domain-contact-card-heading h2 {
    margin: 0 0 3px;

    color: #30353A;

    font-size: 14px;
    font-weight: 700;
}

.webpanda-domain-contact-card-heading p {
    margin: 0;

    color: #92999F;

    font-size: 8px;
    line-height: 1.5;
}

.webpanda-domain-contact-card-body {
    padding: 23px;
}


/* =========================================================
   Intro Note
   ========================================================= */

.webpanda-domain-contact-info-note {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;
    padding: 15px 16px;

    background: #F8FBF4;

    border: 1px solid #DFE6D6;
    border-radius: 10px;
}

.webpanda-domain-contact-info-note > div {
    display: flex;

    flex: 0 0 32px;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    background: #EAF5D7;

    color: #669F0A;

    border-radius: 8px;
}

.webpanda-domain-contact-info-note p {
    margin: 3px 0 0;

    color: #737C6D;

    font-size: 8px;
    line-height: 1.6;
}


/* =========================================================
   Contact Tabs
   ========================================================= */

.webpanda-domain-contact-tabs-wrap {
    margin-bottom: 22px;
}

.webpanda-domain-contact-tabs {
    display: flex;

    gap: 5px;

    margin: 0;

    border-bottom: 1px solid #E4E7E9;
}

.webpanda-domain-contact-tabs .nav-item {
    margin: 0;
}

.webpanda-domain-contact-tabs .nav-link {
    position: relative;

    margin: 0;
    padding: 11px 15px;

    background: transparent;

    color: #858D94;

    border: 0 !important;
    border-radius: 8px 8px 0 0;

    font-size: 8px;
    font-weight: 700;
}

.webpanda-domain-contact-tabs .nav-link:hover {
    background: #F8FCEE;

    color: #527F00;
}

.webpanda-domain-contact-tabs .nav-link.active {
    background: #F1F9E4;

    color: #4D7700;
}

.webpanda-domain-contact-tabs .nav-link.active::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -1px;
    left: 0;

    height: 2px;

    background: var(--wp-green);
}

.webpanda-domain-contact-tabs-wrap
.responsive-tabs-sm-connector {
    display: none;
}

.webpanda-domain-contact-tab-content {
    padding: 0;
}

.webpanda-domain-contact-tab-content > .tab-pane {
    padding: 0;
}


/* =========================================================
   Section Heading
   ========================================================= */

.webpanda-domain-contact-section-heading {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 17px;
}

.webpanda-domain-contact-section-number {
    display: flex;

    flex: 0 0 36px;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    background: #EFF7E2;

    color: #5C9103;

    border-radius: 9px;

    font-size: 8px;
    font-weight: 700;
}

.webpanda-domain-contact-section-heading h3 {
    margin: 1px 0 3px;

    color: #30353A;

    font-size: 11px;
    font-weight: 700;
}

.webpanda-domain-contact-section-heading p {
    margin: 0;

    color: #92999F;

    font-size: 8px;
    line-height: 1.55;
}


/* =========================================================
   Contact Source Choices
   ========================================================= */

.webpanda-domain-contact-source-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-left: 49px;
}

.webpanda-domain-contact-source-option {
    position: relative;

    display: grid;

    grid-template-columns:
        18px minmax(0, 1fr);

    align-items: flex-start;

    gap: 10px;

    margin: 0;
    padding: 15px;

    background: #FAFBFB;

    border: 1px solid #E4E7E9;
    border-radius: 10px;

    cursor: pointer;
}

.webpanda-domain-contact-source-option:has(input:checked) {
    background: #F8FCEE;

    border-color: rgba(141, 210, 0, 0.55);
}

.webpanda-domain-contact-source-option
.form-check-input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.webpanda-domain-contact-source-radio {
    position: relative;

    width: 16px;
    height: 16px;

    margin-top: 1px;

    background: #FFFFFF;

    border: 1px solid #C9CFD3;
    border-radius: 50%;
}

.webpanda-domain-contact-source-option
input:checked
+
.webpanda-domain-contact-source-radio {
    border-color: var(--wp-green);
}

.webpanda-domain-contact-source-option
input:checked
+
.webpanda-domain-contact-source-radio::after {
    content: "";

    position: absolute;

    top: 4px;
    left: 4px;

    width: 6px;
    height: 6px;

    background: var(--wp-green);

    border-radius: 50%;
}

.webpanda-domain-contact-source-copy {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.webpanda-domain-contact-source-copy strong {
    color: #30353A;

    font-size: 9px;
    font-weight: 700;
}

.webpanda-domain-contact-source-copy small {
    color: #90979D;

    font-size: 7px;
    line-height: 1.55;
}


/* =========================================================
   Existing Contact Select
   ========================================================= */

.webpanda-domain-contact-existing {
    max-width: 690px;

    margin-top: 15px;
    margin-left: 49px;
}

.webpanda-domain-contact-existing label {
    display: block;

    margin-bottom: 6px;

    color: #555D63;

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   Divider
   ========================================================= */

.webpanda-domain-contact-divider {
    margin: 24px 0;

    border-top: 1px solid #ECEEEF;
}


/* =========================================================
   Dynamic Fields
   ========================================================= */

.webpanda-domain-contact-fields {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px 16px;

    margin-left: 49px;
}

.webpanda-domain-contact-field {
    min-width: 0;
}

.webpanda-domain-contact-field label {
    display: block;

    margin-bottom: 6px;

    color: #555D63;

    font-size: 8px;
    font-weight: 600;
}

.webpanda-domain-contact-page .form-control,
.webpanda-domain-contact-irtp-modal .form-control {
    min-height: 40px;

    background-color: #FFFFFF;

    color: #40474D;

    border: 1px solid #DDE1E4;
    border-radius: 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 9px;

    box-shadow: none;
}

.webpanda-domain-contact-page .form-control:focus,
.webpanda-domain-contact-irtp-modal .form-control:focus {
    border-color: var(--wp-green);

    outline: none;

    box-shadow:
        0 0 0 3px rgba(141, 210, 0, 0.10);
}

.webpanda-domain-contact-page .custom-select {
    background-color: #FFFFFF;
}

.webpanda-domain-contact-page .form-control:disabled,
.webpanda-domain-contact-page .custom-select:disabled {
    background-color: #F4F5F5;

    color: #A0A6AC;

    cursor: not-allowed;
}


/* =========================================================
   Form Actions
   ========================================================= */

.webpanda-domain-contact-form-actions {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 27px;
    padding-top: 20px;

    border-top: 1px solid #ECEEEF;
}

.webpanda-domain-contact-form-actions-right {
    display: flex;

    align-items: center;

    gap: 8px;
}

.webpanda-domain-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 39px;

    padding: 0 14px;

    background: #FFFFFF;

    color: #555D63 !important;

    border: 1px solid #D9DEE2;
    border-radius: 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    font-weight: 700;

    text-decoration: none !important;

    cursor: pointer;

    box-shadow: none;
}

.webpanda-domain-contact-button:hover,
.webpanda-domain-contact-button:focus {
    background: #F8FCEE;

    color: #4D7700 !important;

    border-color: rgba(141, 210, 0, 0.50);

    outline: none;
}

.webpanda-domain-contact-button-primary {
    background: var(--wp-green);

    color: #111418 !important;

    border-color: var(--wp-green);
}

.webpanda-domain-contact-button-primary:hover,
.webpanda-domain-contact-button-primary:focus {
    background: var(--wp-green-hover);

    color: #111418 !important;

    border-color: var(--wp-green-hover);
}


/* =========================================================
   IRTP Modal
   ========================================================= */

.webpanda-domain-contact-irtp-modal
.modal-dialog {
    max-width: 570px;
}

.webpanda-domain-contact-irtp-modal
.modal-content {
    overflow: hidden;

    border: 0;
    border-radius: 15px;

    box-shadow:
        0 20px 60px rgba(17, 20, 24, 0.24);
}

.webpanda-domain-contact-irtp-modal
.modal-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 20px 22px;

    background: #111418;

    border: 0;
}

.webpanda-domain-contact-modal-eyebrow {
    display: block;

    margin-bottom: 4px;

    color: var(--wp-green);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.webpanda-domain-contact-irtp-modal
.modal-title {
    margin: 0;

    color: #FFFFFF;

    font-size: 14px;
    font-weight: 700;
}

.webpanda-domain-contact-irtp-modal
.close {
    color: rgba(255, 255, 255, 0.65);

    text-shadow: none;

    opacity: 1;
}

.webpanda-domain-contact-irtp-modal
.modal-body {
    padding: 22px;
}

.webpanda-domain-contact-modal-note {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;
    padding: 15px;

    background: #FFF8E8;

    border: 1px solid #E9DFC7;
    border-radius: 10px;
}

.webpanda-domain-contact-modal-note > div {
    display: flex;

    flex: 0 0 32px;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    background: #F8EDCD;

    color: #A47A18;

    border-radius: 8px;
}

.webpanda-domain-contact-modal-note p {
    margin: 3px 0 0;

    color: #746B58;

    font-size: 8px;
    line-height: 1.6;
}

.webpanda-domain-contact-modal-checkbox {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 17px;

    color: #4D555B;

    font-size: 8px;
    font-weight: 600;
}

.webpanda-domain-contact-modal-checkbox
input {
    position: static;

    margin: 0;

    accent-color: var(--wp-green);
}

.webpanda-domain-contact-modal-field label {
    display: block;

    margin-bottom: 6px;

    color: #555D63;

    font-size: 8px;
    font-weight: 600;
}

.webpanda-domain-contact-irtp-modal
.modal-footer {
    display: flex;

    justify-content: flex-end;

    gap: 8px;

    padding: 15px 22px;

    background: #FAFBFB;

    border-top: 1px solid #ECEEEF;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .webpanda-domain-contact-hero-icon {
        display: none;
    }

    .webpanda-domain-contact-source-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .webpanda-domain-contact-hero {
        padding: 27px 23px;
    }

    .webpanda-domain-contact-hero h1 {
        font-size: 23px;
    }

    .webpanda-domain-contact-card-body {
        padding: 18px;
    }

    .webpanda-domain-contact-tabs {
        overflow-x: auto;

        flex-wrap: nowrap;
    }

    .webpanda-domain-contact-tabs .nav-link {
        white-space: nowrap;
    }

    .webpanda-domain-contact-source-grid,
    .webpanda-domain-contact-existing,
    .webpanda-domain-contact-fields {
        margin-left: 0;
    }

    .webpanda-domain-contact-fields {
        grid-template-columns: 1fr;
    }

    .webpanda-domain-contact-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .webpanda-domain-contact-form-actions-right {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .webpanda-domain-contact-button {
        width: 100%;
    }

    .webpanda-domain-contact-irtp-modal
    .modal-footer {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .webpanda-domain-contact-irtp-modal
    .modal-footer
    .webpanda-domain-contact-button {
        width: 100%;
    }

}