:root {
    --ps-font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bs-font-sans-serif: var(--ps-font-family);
    --bs-body-font-family: var(--ps-font-family);
    --bs-btn-font-family: var(--ps-font-family);
    /* Property Stop brand palette (Brand Guidelines v1) */
    --ps-navy: #270d46;
    --ps-red: #e30613;
    --ps-lime: #cdd500;
    --ps-turquoise: #87c1c9;
    --ps-grey: #6f6f6e;
    --ps-white: #ffffff;
}

html,
body,
button,
input,
select,
textarea,
.btn,
.form-control,
.form-select,
.form-label,
h1, h2, h3, h4, h5, h6,
p, span, a, li, label, td, th {
    font-family: var(--ps-font-family);
}

html {
    height: 100vh;
}

body {
    height: 100vh;
    background-color: #210f3f
}



.form-control {
    border: 2px solid var(--ps-turquoise);
    max-width: 100%;
}

.btn-primary {
    max-width: 400px;
    margin: auto;
}

.dw-restrict {
    max-width: 1400px;
    margin: auto;
}

.dw-questiondiv {
}

.dw-displaynone {
    display: none
}

.dw-displayshow {
    display: block
}

.dw-qbox {
    background-color: #210f3f;
    border-radius: 7px
}

    .dw-qbox h2 {
        font-size: 1.1rem;
        background-color: rgba(0,0,0,0.05);
        padding: 15px;
        color: #d2d745
    }

    .dw-qbox p {
        padding: 0px 15px;
        color: #fff
    }







.dw-qbox {
    background-color: #210f3f;
    border-radius: 7px;
    overflow: hidden;
}

    .dw-qbox h2 {
        font-size: 1.1rem;
        background-color: rgba(0,0,0,0.05);
        padding: 15px;
        color: #d2d745
    }

    .dw-qbox p {
        padding: 0px 15px;
        color: #fff
    }






.dw-qbox4 {
    background-color: #210f3f;
    border-radius: 7px;
    color: #fff;
    overflow: hidden;
}


.dw-qbox3 {
    background-color: var(--ps-turquoise);
    border-radius: 7px;
    color: #fff;
    overflow: hidden;
}

    .dw-qbox3 h2 {
        font-size: 1.1rem;
        background-color: rgba(0,0,0,0.05);
        padding: 15px;
    }

    .dw-qbox3 p {
        padding: 0px 15px;
        color: #fff
    }



.dw-qbox2 {
    background-color: #d2d745;
    border-radius: 7px;
    color: #210f3f;
    overflow: hidden;
}

    .dw-qbox2 h2 {
        font-size: 1.1rem;
        background-color: rgba(0,0,0,0.05);
        padding: 15px;
    }

    .dw-qbox2 p {
        padding: 0px 15px;
        color: #fff
    }





.dw-inputdiv {
    padding: 0px 15px 15px 15px
}

.transparent_bg {
    width: 100%;
    height: 30px;
    background: white;
    border-top-left-radius: 60% 80%;
    border-top-right-radius: 60% 80%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    overflow: hidden;
}

    .transparent_bg:after {
        content: "";
        width: 100%;
        height: 30px;
        position: absolute;
        top: 0;
        background: #210f3f;
    }

.dw-editbut {
    background-color: #210f3f;
    border-radius: 20px;
    padding: 5px 12px;
    text-decoration: none;
    color: #fff;
}

.dw-backlink {
    color: #210f3f;
    text-decoration: none;
    font-weight: bold
}

.dw-bad {
    background-color: #ff6861
}

.dw-checklist > .row {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(0,0,0,0.3);
}


.dw-propertydivlit {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    outline: 3px solid #ff6861;
}

.dw-propertydiv {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3)
}



    .dw-propertydiv h2 {
        color: #210f3f;
        font-size: 1.15rem;
    }

    .dw-propertydiv h3 {
        color: var(--ps-turquoise);
        font-size: 1.2rem;
    }

    .dw-propertydiv h4 {
        color: #210f3f;
        font-size: 1.0rem;
    }


.dw-aspectphoto {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-repeat: no-repeat;
    background-size: cover;
}

.dw-registerbox {
    background-color: #210f3f;
    border-radius: 7px
}

    .dw-registerbox h2 {
        font-size: 1.1rem;
        background-color: rgba(0,0,0,0.1);
        padding: 15px;
        color: #fff
    }

    .dw-registerbox label {
        color: #d2d745
    }

    .dw-registerbox p {
        padding: 0px 15px;
        color: #fff
    }

.btn-primary {
    background-color: #d02e26;
    color: #fff;
    border-radius: 50px;
    font-weight: normal;
    padding: 10px 50px;
    outline: none;
    border: none;
}

.input-validation-error {
    border-color: #d02e26;
    background-color: #fadedd;
}



.dw-animatecharacter {
    opacity: 0;
    animation: character-animation 1s forwards;
}

@keyframes character-animation {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        opacity: 1;
        transform: scale(1.2)
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



.dw-animatechevron {
    animation: chevron-animation 2s infinite;
    width: 15px;
    display: inline-block;
    padding-left: 0px;
}

@keyframes chevron-animation {
    0% {
        padding-left: 0px;
    }

    50% {
        padding-left: 10px;
    }

    100% {
        padding-left: 0px;
    }
}


.dw-pulsered {
    animation: pulse-animation 2s infinite;
}

@@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.9);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(208, 46, 38, 0);
    }
}

.dw-nav1 {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

    .dw-nav1 > li {
        padding: 6px 15px 6px 15px;
        margin: 0px;
        list-style: none;
    }

        .dw-nav1 > li > a {
            color: #fff;
            text-decoration: none;
        }

.dw-navselected {
    background-color: rgba(255,255,255,0.1);
    border: 2px dashed red
}

.dw-navdisabled {
    opacity: 0.3
}





#snackbar {
    visibility: hidden;
    min-width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    position: fixed;
    z-index: 10000;
    left: 0;
    bottom: 0;
    padding: 0
}

    #snackbar.show {
        visibility: visible;
        animation: 1s forwards sfadein;
        padding: 20px 0
    }

    #snackbar.hide {
        visibility: visible;
        animation: 1s forwards sfadeout
    }

    #snackbar.good, #snackbar.warning {
        background-color: green
    }

    #snackbar.bad {
        background-color: red
    }

@keyframes sfadein {
    from {
        opacity: 0;
        padding: 0
    }

    to {
        opacity: 1;
        padding: 20px 0
    }
}

@keyframes sfadeout {
    from {
        opacity: 1;
        padding: 20px 0
    }

    to {
        opacity: 0;
        padding: 0
    }
}


.offcanvas {
    background-color: #210f3f;
    padding: 10px
}

.table > :not(caption) > * > * {
    background-color: unset;
    color: #fff
}


.dw-maintenance-boxlink svg {color:#fff}

.dw-maintenance-boxlink {
    background-color: var(--ps-turquoise);
    border-radius: 5px;
    text-decoration: none;
    color: #210f3f;
}

    .dw-maintenance-boxlink:hover {
        color:#fff;
        background-color: #210f3f;
    }


.dw-maintenance-header {
    border: 2px solid #210f3f;
    border-left: 15px solid #210f3f;
    border-radius: 5px;
    overflow: hidden;
}

.ps-cert-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.ps-cert-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    white-space: nowrap;
}

.ps-cert-valid {
    background-color: var(--ps-lime);
    color: var(--ps-navy);
    border: 1px solid rgba(39, 13, 70, 0.15);
}

.ps-cert-warning {
    background-color: var(--ps-turquoise);
    color: var(--ps-navy);
    border: 1px solid rgba(39, 13, 70, 0.12);
}

.ps-cert-danger {
    background-color: var(--ps-red);
    color: var(--ps-white);
    border: 1px solid var(--ps-red);
}

.ps-cert-neutral {
    background-color: var(--ps-grey);
    color: var(--ps-white);
    border: 1px solid var(--ps-grey);
}

.ps-cert-info {
    background-color: rgba(135, 193, 201, 0.35);
    color: var(--ps-navy);
    border: 1px solid var(--ps-turquoise);
}

.ps-cert-table th {
    font-weight: 600;
    color: var(--ps-navy);
    border-bottom-width: 2px;
}

.ps-cert-table td {
    vertical-align: middle;
}

.ps-cert-table > :not(caption) > * > * {
    color: var(--ps-navy);
    background-color: transparent;
}

.ps-property-compliance-card,
.ps-property-compliance-card h3,
.ps-property-compliance-card td,
.ps-property-compliance-card th,
.ps-property-compliance-card .ps-cert-summary {
    color: var(--ps-navy);
}

.ps-property-compliance-card a:not(.ps-cert-view-btn) {
    color: var(--ps-navy);
}

.ps-property-compliance-card a:not(.ps-cert-view-btn):hover {
    color: var(--ps-turquoise);
}

.ps-compliance-compact {
    border-top: 1px solid rgba(33, 15, 63, 0.15);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

.ps-compliance-compact-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ps-navy);
    margin-bottom: 0.35rem;
}

.ps-cert-badge-compact {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
}

/* Lime panel (e.g. My Properties): invert valid badge for contrast */
.dw-qbox2 .ps-cert-valid,
.dw-qbox3 .ps-cert-valid {
    background-color: var(--ps-navy);
    color: var(--ps-lime);
    border-color: var(--ps-navy);
}

.dw-qbox2 .ps-cert-warning,
.dw-qbox3 .ps-cert-warning {
    background-color: var(--ps-navy);
    color: var(--ps-turquoise);
    border-color: var(--ps-navy);
}

.ps-property-compliance-card a.ps-cert-view-btn,
.ps-compliance-compact a.ps-cert-view-btn {
    background-color: var(--ps-navy);
    border-color: var(--ps-navy);
    color: var(--ps-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    white-space: nowrap;
    text-decoration: none;
}

.ps-property-compliance-card a.ps-cert-view-btn:hover,
.ps-property-compliance-card a.ps-cert-view-btn:focus,
.ps-compliance-compact a.ps-cert-view-btn:hover,
.ps-compliance-compact a.ps-cert-view-btn:focus {
    background-color: var(--ps-lime);
    border-color: var(--ps-lime);
    color: var(--ps-navy);
}

a.ps-cert-view-btn .bi {
    color: inherit;
}

.ps-property-compliance-card {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.ps-property-compliance-card h3 {
    font-size: 1.05rem;
    margin: 0;
    padding: 0.85rem 1rem;
    background-color: rgba(135, 193, 201, 0.2);
    border-bottom: 1px solid var(--ps-turquoise);
    color: var(--ps-navy);
}

/* Page title banner (account pages) */
.ps-page-banner {
    background-color: var(--ps-turquoise);
}

/* ============================================================
   Your Details section (account home) - horizontal profile card
   ============================================================ */
.ps-profile-card {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    background-color: #fff;
    border: 1px solid rgba(39, 13, 70, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(39, 13, 70, 0.05);
}

.ps-profile-aside {
    background-color: var(--ps-turquoise);
    color: var(--ps-navy);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.ps-profile-eyebrow {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(39, 13, 70, 0.7);
}

.ps-profile-name {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ps-navy);
    line-height: 1.2;
    word-break: break-word;
}

.ps-profile-manage {
    margin-top: 0.65rem;
    display: inline-flex;
    align-items: center;
    background-color: var(--ps-navy);
    color: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.ps-profile-manage:hover,
.ps-profile-manage:focus {
    background-color: var(--ps-lime);
    color: var(--ps-navy);
    transform: translateY(-1px);
}

.ps-profile-info {
    padding: 0.5rem 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.ps-profile-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(39, 13, 70, 0.06);
}

.ps-profile-row:last-child {
    border-bottom: none;
}

.ps-profile-row-icon {
    font-size: 1.15rem;
    color: var(--ps-turquoise);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1.4rem;
    text-align: center;
}

.ps-profile-row-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.ps-profile-row-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--ps-grey);
    margin-bottom: 0.1rem;
}

.ps-profile-row-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ps-navy);
    word-break: break-word;
    line-height: 1.4;
}

.ps-profile-link {
    color: var(--ps-navy);
    text-decoration: none;
    border-bottom: 1px dashed rgba(39, 13, 70, 0.25);
    transition: color 0.15s ease, border-color 0.15s ease;
    align-self: flex-start;
}

.ps-profile-link:hover,
.ps-profile-link:focus {
    color: var(--ps-red);
    border-bottom-color: var(--ps-red);
}

@media (max-width: 767.98px) {
    .ps-profile-card {
        grid-template-columns: 1fr;
    }

    .ps-profile-aside {
        padding: 1rem 1.1rem;
    }

    .ps-profile-name {
        font-size: 1.1rem;
    }

    .ps-profile-row {
        padding: 0.75rem 1rem;
    }
}

/* ============================================================
   My Properties section (account home)
   ============================================================ */
.ps-properties-section {
    background-color: #fff;
    border: 1px solid rgba(39, 13, 70, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(39, 13, 70, 0.06);
}

.ps-properties-section-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--ps-navy) 0%, #3a1968 100%);
    color: #fff;
}

.ps-properties-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: 0.01em;
}

.ps-properties-section-subtitle {
    font-size: 0.8rem;
    margin: 0.1rem 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.ps-properties-section-action {
    display: inline-flex;
    align-items: center;
    background-color: var(--ps-lime);
    color: var(--ps-navy);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.ps-properties-section-action:hover,
.ps-properties-section-action:focus {
    background-color: #fff;
    color: var(--ps-navy);
    transform: translateY(-1px);
}

.ps-properties-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--ps-grey);
}

.ps-properties-empty .bi {
    font-size: 1.75rem;
    color: var(--ps-turquoise);
}

.ps-properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #fafafa;
}

.ps-property-card {
    background-color: #fff;
    border: 1px solid rgba(39, 13, 70, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.ps-property-card:hover {
    box-shadow: 0 8px 22px rgba(39, 13, 70, 0.1);
    border-color: var(--ps-turquoise);
    transform: translateY(-1px);
}

.ps-property-card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background-color: var(--ps-navy);
    color: #fff;
}

.ps-property-card-address {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
}

.ps-property-card-address > .bi {
    font-size: 1.2rem;
    color: var(--ps-lime);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.ps-property-card-line1 {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
    color: #fff;
}

.ps-property-card-line2 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.3;
    margin-top: 0.1rem;
}

.ps-property-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.ps-property-pill-active {
    background-color: var(--ps-lime);
    color: var(--ps-navy);
}

.ps-property-pill-vacant {
    background-color: rgba(135, 193, 201, 0.85);
    color: var(--ps-navy);
}

.ps-property-card-body {
    padding: 1rem 1.1rem;
}

.ps-property-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0;
    row-gap: 0.4rem;
}

.ps-property-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.1rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ps-navy);
    border-right: 1px solid rgba(39, 13, 70, 0.12);
    line-height: 1.2;
}

.ps-property-feature:first-child {
    padding-left: 0;
}

.ps-property-feature:last-child {
    border-right: none;
    padding-right: 0;
}

.ps-property-feature > .bi {
    font-size: 1.05rem;
    color: var(--ps-turquoise);
    flex-shrink: 0;
}

.ps-property-feature-unit {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ps-grey);
}

@media (max-width: 575.98px) {
    .ps-property-features {
        column-gap: 0;
    }

    .ps-property-feature {
        padding: 0.1rem 0.65rem;
        font-size: 0.88rem;
    }
}

.ps-property-compliance {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(39, 13, 70, 0.18);
}

.ps-property-compliance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55rem;
}

.ps-property-compliance-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ps-navy);
    display: inline-flex;
    align-items: center;
}

.ps-property-compliance-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ps-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ps-property-compliance-link:hover {
    color: var(--ps-red);
    text-decoration: underline;
}

.ps-property-compliance-items {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ps-property-compliance-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.ps-property-compliance-item-primary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.ps-property-compliance-item-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ps-navy);
}

.ps-compliance-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--ps-turquoise);
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.ps-compliance-info-btn:hover,
.ps-compliance-info-btn:focus {
    color: var(--ps-navy);
    background-color: rgba(135, 193, 201, 0.22);
    outline: none;
}

.ps-compliance-info-btn.is-active {
    color: var(--ps-navy);
    background-color: rgba(205, 213, 0, 0.35);
}

.ps-compliance-info-btn > .bi {
    font-size: 0.95rem;
}

.ps-compliance-info-text {
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.7rem;
    font-size: 0.76rem;
    line-height: 1.45;
    color: var(--ps-navy);
    background-color: #f4f6f8;
    border: 1px solid rgba(39, 13, 70, 0.08);
    border-radius: 8px;
}

.ps-compliance-info-text[hidden] {
    display: none;
}

/* ---------- Preferred suppliers (per property card) ---------- */
.ps-property-suppliers {
    margin-top: 1rem;
    padding: 0.9rem 0.95rem 1rem;
    border-radius: 12px;
    background-color: #f4f6f8;
    border: 1px solid rgba(39, 13, 70, 0.08);
}

.ps-property-suppliers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    padding-left: 0.25rem;
}

.ps-property-suppliers-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ps-navy);
    display: inline-flex;
    align-items: center;
}

.ps-property-suppliers-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.45rem;
    margin-left: 0.5rem;
    background-color: var(--ps-navy);
    color: var(--ps-lime);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
}

.ps-property-suppliers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ps-supplier-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.7rem;
    background-color: #fff;
    border: 1px solid rgba(39, 13, 70, 0.08);
    border-radius: 10px;
    transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ps-supplier-row:hover {
    box-shadow: 0 6px 14px rgba(39, 13, 70, 0.08);
    border-color: var(--ps-turquoise);
    transform: translateY(-1px);
}

.ps-supplier-main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ps-supplier-row-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.ps-supplier-service-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem 0.55rem;
    background-color: var(--ps-navy);
    color: var(--ps-lime);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.ps-supplier-service-pill > .bi {
    font-size: 0.65rem;
}

.ps-supplier-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ps-navy);
    line-height: 1.2;
    word-break: break-word;
}

.ps-supplier-contact,
.ps-supplier-notes,
.ps-supplier-service-group {
    font-size: 0.78rem;
    color: var(--ps-grey);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1.3;
}

.ps-supplier-contact > .bi,
.ps-supplier-notes > .bi,
.ps-supplier-service-group > .bi {
    color: var(--ps-turquoise);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.ps-supplier-service-group {
    font-weight: 600;
    color: var(--ps-navy);
    opacity: 0.8;
}

.ps-supplier-notes {
    color: var(--ps-navy);
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ps-supplier-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.ps-supplier-action {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(135, 193, 201, 0.18);
    color: var(--ps-navy);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.ps-supplier-action:hover,
.ps-supplier-action:focus {
    background-color: var(--ps-lime);
    color: var(--ps-navy);
    transform: translateY(-1px);
}

.ps-supplier-action > .bi {
    font-size: 0.9rem;
}

@media (max-width: 575.98px) {
    .ps-property-suppliers {
        padding: 0.75rem 0.7rem 0.85rem;
    }

    .ps-supplier-row {
        padding: 0.55rem 0.55rem;
        gap: 0.6rem;
    }

    .ps-supplier-name {
        font-size: 0.86rem;
    }
}

@media (max-width: 575.98px) {
    .ps-properties-grid {
        padding: 0.85rem;
    }

    .ps-property-card-body {
        padding: 0.85rem;
    }
}

.app-version-footer {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

/* ============================================================
   Account home dashboard (clean focused v3 layout)
   ============================================================ */
.ps-account-home {
    --ps-dash-bg: #f4f6fa;
    --ps-dash-card: #ffffff;
    --ps-dash-line: #ececf2;
    --ps-dash-text: #171420;
    background-color: var(--ps-dash-bg);
    color: var(--ps-dash-text);
}

.ps-account-main {
    min-width: 0;
}

.ps-dash-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ps-dash-topbar-copy {
    text-align: right;
    line-height: 1.35;
}

.ps-dash-topbar-copy strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--ps-navy);
}

.ps-dash-topbar-copy span {
    font-size: 12px;
    color: #666;
}

.ps-dash-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ps-red);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.ps-dash-hero {
    background: linear-gradient(135deg, var(--ps-navy), #34145d);
    border-radius: 34px;
    padding: 36px 40px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.ps-dash-hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--ps-red);
    right: -120px;
    top: -120px;
    opacity: 0.95;
    pointer-events: none;
}

.ps-dash-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.ps-dash-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.ps-dash-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.ps-dash-hero-name {
    color: var(--ps-lime);
}

.ps-dash-hero p {
    margin: 18px 0 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 17px;
}

.ps-dash-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ps-dash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ps-dash-btn:hover,
.ps-dash-btn:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.ps-dash-btn-red {
    background: var(--ps-red);
    color: #fff;
    box-shadow: 0 12px 24px rgba(227, 6, 19, 0.24);
}

.ps-dash-btn-red:hover,
.ps-dash-btn-red:focus {
    color: #fff;
}

.ps-dash-btn-white {
    background: #fff;
    color: var(--ps-navy);
}

.ps-dash-btn-white:hover,
.ps-dash-btn-white:focus {
    color: var(--ps-navy);
}

.ps-dash-btn-sm {
    padding: 10px 16px;
    font-size: 12px;
}

/* Top header "Landlord Portal" title (typography synced to dashboard hero) */
.ps-portal-title {
    font-weight: 900;
    letter-spacing: -0.06em;
}

.ps-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ps-dash-stat {
    background: var(--ps-dash-card);
    border-radius: 24px;
    padding: 22px;
    border: 1px solid var(--ps-dash-line);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.ps-dash-stat-number {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
    line-height: 1;
}

.ps-dash-stat-red { color: var(--ps-red); }
.ps-dash-stat-blue { color: #4da8b2; }
.ps-dash-stat-green { color: #9ca700; }
.ps-dash-stat-grey { color: #666; }

.ps-dash-stat strong {
    display: block;
    font-size: 14px;
    color: var(--ps-navy);
}

.ps-dash-stat span {
    color: #666;
    font-size: 13px;
}

.ps-dash-workspace {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: 20px;
    align-items: start;
}

.ps-dash-workspace-stacked {
    grid-template-columns: 1fr;
}

.ps-dash-card {
    background: var(--ps-dash-card);
    border-radius: 28px;
    padding: 24px;
    border: 1px solid var(--ps-dash-line);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.ps-dash-card-wide {
    min-width: 0;
}

.ps-dash-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.ps-dash-card h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.04em;
    color: var(--ps-navy);
    font-weight: 800;
}

.ps-dash-sub {
    margin-top: 4px;
    color: #666;
    font-size: 13px;
}

/* Scoped overrides for profile + properties inside dashboard */
.ps-account-home .ps-profile-card {
    border-radius: 24px;
    border: 1px solid var(--ps-dash-line);
    box-shadow: none;
}

.ps-account-home .ps-profile-aside {
    background: linear-gradient(180deg, rgba(135, 193, 201, 0.35), rgba(135, 193, 201, 0.15));
    border-radius: 24px 0 0 24px;
}

.ps-account-home .ps-profile-row {
    padding: 1rem 1.35rem;
}

.ps-account-home .ps-profile-row-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #666;
}

.ps-account-home .ps-properties-section {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.ps-account-home .ps-properties-section-header {
    display: none;
}

.ps-account-home .ps-properties-grid {
    padding: 0;
    background: transparent;
    gap: 12px;
}

.ps-account-home .ps-property-card {
    border-radius: 20px;
    border: 1px solid #f0f1f4;
    background: #fafbfd;
    box-shadow: none;
}

.ps-account-home .ps-property-card:hover {
    border-color: var(--ps-dash-line);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.ps-account-home .ps-property-card-header {
    background: linear-gradient(135deg, var(--ps-navy) 0%, #3a1968 100%);
    color: #fff;
    padding: 0.9rem 1rem;
}

.ps-account-home .ps-property-card-address > .bi {
    color: var(--ps-lime);
}

.ps-account-home .ps-property-card-line1 {
    color: #fff;
    font-weight: 900;
    font-size: 1.02rem;
}

.ps-account-home .ps-property-card-line2 {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.ps-account-home .ps-property-pill {
    font-size: 0.78rem;
    padding: 0.34rem 0.8rem;
}

.ps-account-home .ps-property-pill-active {
    background: rgba(205, 213, 0, 0.92);
    color: var(--ps-navy);
}

.ps-account-home .ps-property-pill-vacant {
    background: rgba(135, 193, 201, 0.28);
    color: var(--ps-navy);
}

.ps-account-home .ps-property-pill-warning {
    background: rgba(135, 193, 201, 0.26);
    color: var(--ps-navy);
}

.ps-account-home .ps-property-pill-danger {
    background: rgba(227, 6, 19, 0.12);
    color: #b3000d;
}

.ps-account-home .ps-property-card-body {
    padding: 0.95rem 1rem 1rem;
}

.ps-account-home .ps-property-card .ps-cert-summary {
    margin-bottom: 0.75rem;
    color: #666;
}

.ps-account-home .ps-property-suppliers {
    background: #fff;
    border-radius: 16px;
}

.ps-account-home .ps-property-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.75rem;
    margin: 0;
    padding: 0;
}

.ps-account-home .ps-property-feature {
    width: 100%;
    padding: 0.1rem 0;
    border-right: none;
    justify-content: flex-start;
    font-size: 0.95rem;
}

.ps-account-home .ps-property-feature > .bi {
    font-size: 1.1rem;
}

.ps-account-home .ps-property-compliance {
    margin-top: 0.85rem;
    padding: 0.85rem 0.9rem;
    border-top: none;
    background: #fff;
    border: 1px solid rgba(39, 13, 70, 0.08);
    border-radius: 16px;
}

.ps-account-home .ps-property-compliance-label {
    font-size: 0.82rem;
}

.ps-account-home .ps-compliance-info-text {
    font-size: 0.8rem;
}

.ps-account-home .ps-properties-empty {
    border-radius: 20px;
    background: #fafbfd;
    border: 1px solid #f0f1f4;
}

.ps-account-home .dw-qbox4 {
    background: linear-gradient(180deg, var(--ps-navy), #1a0831);
    border-radius: 24px;
    border: none;
    padding: 8px 10px 14px;
    box-shadow: 0 10px 28px rgba(39, 13, 70, 0.2);
}

.ps-account-home .dw-nav1 > li {
    padding: 4px 8px;
}

.ps-account-home .dw-nav1 > li > a {
    display: block;
    padding: 15px 16px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.18s ease;
}

.ps-account-home .dw-nav1 > li > a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.ps-account-home .dw-navselected {
    background-color: transparent;
    border: none;
}

.ps-account-home .dw-navselected > a {
    background: var(--ps-red);
    box-shadow: 0 12px 24px rgba(227, 6, 19, 0.24);
}

@media (max-width: 1199.98px) {
    .ps-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-dash-workspace {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .ps-dash-hero {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .ps-dash-hero h1 {
        letter-spacing: -0.04em;
    }

    .ps-dash-stats {
        grid-template-columns: 1fr;
    }

    .ps-dash-stat-number {
        font-size: 34px;
    }

    .ps-account-home .ps-profile-aside {
        border-radius: 24px 24px 0 0;
    }
}