
.idlocal-shell,
.idlocal-dashboard {
    width: min(100% - 32px, 1060px);
    margin: 48px auto;
    font-family: inherit;
    color: #17332b;
}

.idlocal-card {
    background: #fff;
    border: 1px solid #dbe7e2;
    border-radius: 18px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 14px 40px rgba(21, 71, 57, 0.08);
}

.idlocal-card-narrow {
    width: min(100%, 600px);
    margin-inline: auto;
}

.idlocal-eyebrow {
    color: #16835f;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.idlocal-card h1,
.idlocal-dashboard h1,
.idlocal-card h2 {
    color: #17332b;
    line-height: 1.15;
    margin-top: 0;
}

.idlocal-lead {
    color: #5a6f68;
    font-size: 1.04rem;
    margin-bottom: 28px;
}

.idlocal-form {
    display: grid;
    gap: 20px;
}

.idlocal-grid {
    display: grid;
    gap: 18px;
}

.idlocal-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.idlocal-form label {
    display: grid;
    gap: 7px;
    color: #24473d;
    font-weight: 650;
}

.idlocal-form input,
.idlocal-form select,
.idlocal-form textarea,
#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c9d9d3;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
    color: #17332b;
    font: inherit;
}

.idlocal-form input:focus,
.idlocal-form select:focus,
.idlocal-form textarea:focus,
#loginform input:focus {
    outline: 3px solid rgba(22, 131, 95, 0.16);
    border-color: #16835f;
}

.idlocal-form input[disabled] {
    background: #f4f7f6;
    color: #6b7d77;
}

.idlocal-form small {
    color: #687b75;
    font-weight: 400;
}

.idlocal-button,
#wp-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    background: #16835f;
    color: #fff;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    text-decoration: none;
}

.idlocal-button:hover,
#wp-submit:hover {
    background: #106a4c;
    color: #fff;
}

.idlocal-secondary-link {
    margin: 20px 0 0;
    color: #64766f;
}

.idlocal-secondary-link a,
.idlocal-logout {
    color: #16835f;
    font-weight: 700;
}

.idlocal-notice {
    border-radius: 10px;
    padding: 13px 15px;
    margin-bottom: 20px;
}

.idlocal-notice-success {
    background: #eaf7f1;
    border: 1px solid #bce4d4;
    color: #155f48;
}

.idlocal-notice-error {
    background: #fff1f0;
    border: 1px solid #f0c5c2;
    color: #8b2c27;
}

.idlocal-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 26px;
}

.idlocal-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 18px;
    padding-bottom: 4px;
}

.idlocal-tabs a {
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid #d8e5e0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #60736d;
    background: #fff;
}

.idlocal-tabs a.is-active {
    background: #17332b;
    border-color: #17332b;
    color: #fff;
}

.idlocal-dashboard-card {
    box-shadow: none;
}

#loginform {
    display: grid;
    gap: 16px;
}

#loginform p {
    margin: 0;
}

#loginform label {
    color: #24473d;
    font-weight: 650;
}

#loginform .login-remember label {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 500;
}

#loginform input[type="checkbox"] {
    width: auto;
}

@media (max-width: 680px) {
    .idlocal-shell,
    .idlocal-dashboard {
        width: min(100% - 20px, 1060px);
        margin: 24px auto;
    }

    .idlocal-grid-2 {
        grid-template-columns: 1fr;
    }

    .idlocal-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .idlocal-button,
    #wp-submit {
        width: 100%;
    }
}


.idlocal-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.idlocal-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 11px;
    background: #eaf7f1;
    color: #156b4f;
    font-size: 0.82rem;
    font-weight: 750;
    white-space: nowrap;
}

.idlocal-checkbox {
    grid-template-columns: auto 1fr;
    align-items: flex-start;
}

.idlocal-checkbox input {
    width: auto;
    margin-top: 4px;
}

.idlocal-empty {
    border: 1px dashed #c7d9d2;
    border-radius: 14px;
    padding: 24px;
    background: #f8fbfa;
}

.idlocal-table-wrap {
    overflow-x: auto;
}

.idlocal-data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.idlocal-data-table th,
.idlocal-data-table td {
    border-bottom: 1px solid #e0e9e6;
    padding: 13px 12px;
    text-align: left;
    vertical-align: top;
}

.idlocal-data-table th {
    color: #47645a;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.idlocal-data-table a {
    color: #16835f;
    font-weight: 700;
}

.idlocal-status {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 9px;
    background: #eaf7f1;
    color: #156b4f;
    font-size: 0.82rem;
    font-weight: 700;
}

.idlocal-report {
    width: min(100% - 24px, 980px);
    margin: 28px auto 60px;
    color: #17332b;
    font-family: inherit;
}

.idlocal-report-cover,
.idlocal-report-section,
.idlocal-report-contact {
    background: #fff;
    border: 1px solid #dbe7e2;
    border-radius: 18px;
    padding: clamp(24px, 5vw, 48px);
    margin-bottom: 18px;
}

.idlocal-report-cover {
    background:
        radial-gradient(circle at top right, rgba(22, 131, 95, 0.13), transparent 38%),
        #fff;
}

.idlocal-report-brand {
    display: inline-flex;
    margin-bottom: 48px;
    color: #16835f;
    font-size: 1.15rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.idlocal-report-cover h1 {
    margin: 0;
    max-width: 820px;
    color: #17332b;
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.03;
}

.idlocal-report-prepared,
.idlocal-report-date {
    color: #587068;
}

.idlocal-demo-warning {
    display: grid;
    gap: 3px;
    margin-top: 36px;
    border-left: 4px solid #16835f;
    padding: 12px 15px;
    background: #eef8f4;
}

.idlocal-report-section h2,
.idlocal-report-contact h2 {
    margin-top: 0;
    color: #17332b;
}

.idlocal-report-summary {
    max-width: 760px;
    color: #4f6960;
    font-size: 1.08rem;
    line-height: 1.7;
}

.idlocal-score-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.idlocal-score-card {
    display: grid;
    gap: 18px;
    min-height: 130px;
    border: 1px solid #dbe7e2;
    border-radius: 14px;
    padding: 18px;
    background: #f8fbfa;
}

.idlocal-score-card span {
    color: #557067;
    font-size: 0.9rem;
}

.idlocal-score-card strong {
    color: #16835f;
    font-size: 2rem;
}

.idlocal-score-card small {
    font-size: 0.8rem;
}

.idlocal-essential-list {
    border-top: 1px solid #e0e9e6;
}

.idlocal-essential-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #e0e9e6;
    padding: 14px 0;
}

.idlocal-report-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    background: #17332b;
    color: #fff;
}

.idlocal-report-contact h2,
.idlocal-report-contact .idlocal-eyebrow {
    color: #fff;
}

.idlocal-contact-actions {
    display: grid;
    align-content: center;
    gap: 10px;
}

.idlocal-contact-actions a {
    color: #fff;
    font-weight: 700;
}

.idlocal-report-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #64766f;
    font-size: 0.82rem;
    padding: 8px 4px;
}

@media (max-width: 800px) {
    .idlocal-score-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .idlocal-report-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .idlocal-section-heading,
    .idlocal-report-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .idlocal-score-grid {
        grid-template-columns: 1fr;
    }
}


.idlocal-report-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.idlocal-inline-form {
    display: inline;
    margin: 0;
}

.idlocal-link-button {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: #16835f;
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.idlocal-report-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}

@media (max-width: 520px) {
    .idlocal-report-toolbar .idlocal-button {
        width: 100%;
    }
}


.idlocal-button-secondary {
    background: #fff;
    color: #16835f;
    border: 1px solid #16835f;
}

.idlocal-button-secondary:hover {
    background: #eef8f4;
    color: #106a4c;
}

.idlocal-location-builder {
    display: grid;
    gap: 16px;
    border: 1px solid #dbe7e2;
    border-radius: 16px;
    padding: 20px;
    background: #f8fbfa;
}

.idlocal-location-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.idlocal-field-label {
    display: block;
    color: #24473d;
    font-weight: 650;
    margin-bottom: 5px;
}

.idlocal-place-autocomplete {
    min-height: 52px;
}

.idlocal-place-autocomplete gmp-place-autocomplete {
    width: 100%;
    color-scheme: light;
}

.idlocal-map-wrap {
    display: grid;
    gap: 8px;
}

.idlocal-map {
    width: 100%;
    min-height: 360px;
    border: 1px solid #cadbd4;
    border-radius: 14px;
    overflow: hidden;
    background: #e9f0ed;
}

.idlocal-map-help {
    margin: 0;
    color: #64766f;
    font-size: 0.9rem;
}

.idlocal-location-summary {
    display: grid;
    gap: 4px;
    border-left: 4px solid #16835f;
    padding: 11px 14px;
    background: #eaf7f1;
    color: #234b3f;
}

.idlocal-location-status {
    min-height: 22px;
    color: #5e736b;
    font-size: 0.93rem;
}

.idlocal-location-status.is-error {
    color: #9d2924;
}

.idlocal-location-status.is-success {
    color: #156b4f;
}

.idlocal-confirm-location {
    border-top: 1px solid #dbe7e2;
    padding-top: 16px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 680px) {
    .idlocal-location-heading {
        flex-direction: column;
    }

    .idlocal-location-heading .idlocal-button {
        width: 100%;
    }

    .idlocal-map {
        min-height: 290px;
    }
}


.idlocal-report-map-section {
    overflow: hidden;
}

.idlocal-report-map {
    width: 100%;
    min-height: 430px;
    border: 1px solid #d6e3de;
    border-radius: 14px;
    overflow: hidden;
    background: #eaf1ee;
}

.idlocal-report-map.is-error {
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 24px;
    color: #8b2c27;
    text-align: center;
}

.idlocal-report-map-caption {
    margin: 14px 0 0;
    color: #64766f;
    font-size: 0.92rem;
}

@media (max-width: 680px) {
    .idlocal-report-map {
        min-height: 320px;
    }
}


.idlocal-live-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 11px;
    background: #eaf7f1;
    color: #156b4f;
    font-size: 0.82rem;
    font-weight: 750;
    white-space: nowrap;
}

.idlocal-nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.idlocal-nearby-card {
    border: 1px solid #dbe7e2;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
}

.idlocal-nearby-card > header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-bottom: 1px solid #e1ebe7;
    padding-bottom: 14px;
    margin-bottom: 6px;
}

.idlocal-nearby-card h3 {
    margin: 0 0 4px;
    color: #17332b;
    font-size: 1.08rem;
}

.idlocal-nearby-card header p {
    margin: 0;
    color: #667a72;
    font-size: 0.86rem;
    line-height: 1.4;
}

.idlocal-nearby-marker,
.idlocal-map-legend-dot {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--idlocal-marker-color, #16835f);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.idlocal-nearby-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.idlocal-nearby-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 12px;
    border-bottom: 1px solid #edf2f0;
    padding: 12px 0;
}

.idlocal-nearby-list li:last-child {
    border-bottom: 0;
}

.idlocal-nearby-place-main {
    display: grid;
    gap: 2px;
}

.idlocal-nearby-place-main a,
.idlocal-nearby-place-main strong {
    color: #17332b;
    font-weight: 750;
    text-decoration: none;
}

.idlocal-nearby-place-main a:hover {
    color: #16835f;
    text-decoration: underline;
}

.idlocal-nearby-place-main span {
    color: #687b75;
    font-size: 0.82rem;
}

.idlocal-nearby-distance {
    color: #16835f;
    font-size: 0.9rem;
    white-space: nowrap;
}

.idlocal-nearby-list small {
    grid-column: 1 / -1;
    color: #73837e;
    line-height: 1.4;
}

.idlocal-nearby-map-link {
    grid-column: 1 / -1;
    width: fit-content;
    color: #16835f;
    font-size: 0.8rem;
    font-weight: 700;
}

.idlocal-nearby-empty,
.idlocal-nearby-unavailable {
    margin: 14px 0 4px;
    color: #687b75;
    font-size: 0.9rem;
}

.idlocal-nearby-unavailable {
    color: #8b2c27;
}

.idlocal-places-attribution {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #dfe9e5;
    padding-top: 14px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #5e5e5e;
}

.idlocal-places-attribution a {
    color: #5e5e5e;
}

.idlocal-nearby-distance-note {
    margin: 8px 0 0;
    color: #73837e;
    font-size: 0.82rem;
}

.idlocal-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 15px;
    color: #5f726b;
    font-size: 0.82rem;
}

.idlocal-map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.idlocal-map-legend-dot {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
}

.idlocal-property-dot {
    background: #16835f;
}

.idlocal-map-info {
    display: grid;
    gap: 4px;
    max-width: 260px;
    color: #17332b;
    font-family: Arial, sans-serif;
}

.idlocal-map-info strong {
    font-size: 14px;
}

.idlocal-map-info span,
.idlocal-map-info small {
    color: #5f726b;
    font-size: 12px;
}

.idlocal-map-info a {
    margin-top: 5px;
    color: #16835f;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .idlocal-nearby-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .idlocal-nearby-list li {
        grid-template-columns: 1fr;
    }

    .idlocal-nearby-distance {
        grid-row: auto;
    }
}


.idlocal-nearby-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    align-items: center;
    justify-content: space-between;
}

.idlocal-nearby-title-row h3 {
    flex: 1 1 auto;
}

.idlocal-route-mode-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 4px 8px;
    background: #eef5f2;
    color: #526a61;
    font-size: 0.72rem;
    font-weight: 750;
    white-space: nowrap;
}

.idlocal-nearby-travel {
    display: grid;
    justify-items: end;
    align-content: start;
    gap: 2px;
    min-width: 105px;
    text-align: right;
}

.idlocal-nearby-travel strong {
    color: #16835f;
    font-size: 0.9rem;
    white-space: nowrap;
}

.idlocal-nearby-travel span {
    color: #6c7d77;
    font-size: 0.77rem;
    white-space: nowrap;
}

.idlocal-map-route-summary {
    color: #16835f !important;
    font-weight: 700;
}

@media (max-width: 520px) {
    .idlocal-nearby-travel {
        justify-items: start;
        min-width: 0;
        text-align: left;
    }
}


.idlocal-real-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.idlocal-real-score-card {
    gap: 14px;
    min-height: 250px;
}

.idlocal-score-card-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.idlocal-score-card-heading > span {
    color: #17332b;
    font-size: 1rem;
    font-weight: 750;
}

.idlocal-confidence-badge {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 4px 8px;
    background: #eef4f1;
    color: #5e716a;
    font-size: 0.7rem;
    font-weight: 750;
    white-space: nowrap;
}

.idlocal-confidence-badge.is-high {
    background: #e6f5ee;
    color: #146a4d;
}

.idlocal-confidence-badge.is-medium {
    background: #f3f1e7;
    color: #78651c;
}

.idlocal-confidence-badge.is-low {
    background: #f7ece9;
    color: #8b4136;
}

.idlocal-score-value-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: baseline;
}

.idlocal-score-value-row strong {
    line-height: 1;
}

.idlocal-score-value-row b {
    color: #37584d;
    font-size: 0.95rem;
}

.idlocal-score-meter {
    overflow: hidden;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #e3ece8;
}

.idlocal-score-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #16835f;
}

.idlocal-real-score-card > p {
    margin: 0;
    color: #526a61;
    font-size: 0.91rem;
    line-height: 1.55;
}

.idlocal-score-methodology {
    margin-top: 20px;
    border-top: 1px solid #dfe9e5;
    padding-top: 16px;
    color: #5c7068;
    font-size: 0.86rem;
    line-height: 1.55;
}

.idlocal-score-methodology strong {
    color: #294b40;
}

.idlocal-score-methodology p {
    margin: 5px 0 0;
}

@media (max-width: 760px) {
    .idlocal-real-score-grid {
        grid-template-columns: 1fr;
    }

    .idlocal-real-score-card {
        min-height: 0;
    }
}


.idlocal-retired-report {
    max-width: 720px;
    margin: 70px auto;
    padding: 42px;
    text-align: center;
}

.idlocal-retired-report h1 {
    margin: 10px 0 16px;
    color: #17332b;
}

.idlocal-retired-report p {
    margin: 0 auto;
    max-width: 600px;
    color: #5a7067;
    font-size: 1rem;
    line-height: 1.65;
}


.idlocal-neighbourhood-confirmation {
    display: grid;
    gap: 10px;
    border: 1px solid #cfe0d9;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
}

.idlocal-neighbourhood-confirmation label {
    margin: 0;
}

.idlocal-neighbourhood-confirmation input {
    font-size: 1.02rem;
    font-weight: 650;
}

.idlocal-neighbourhood-confirmation > small {
    color: #667a72;
    line-height: 1.45;
}

.idlocal-neighbourhood-preview {
    display: grid;
    gap: 3px;
    border-left: 4px solid #16835f;
    padding: 9px 12px;
    background: #eef8f4;
    color: #234b3f;
}

.idlocal-neighbourhood-preview strong {
    font-size: 0.98rem;
}

.idlocal-neighbourhood-preview small {
    color: #5e736b;
}
