:root {
    --green-dark: #0F3D2E;
    --green: #1B5E20;
    --wood: #8B5E34;
    --sand: #E7D7B1;
    --bg: #F7F7F5;
    --text: #212121;
    --orange: #FF8C00;
    --white: #ffffff;
    --danger: #C62828;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background:
        linear-gradient(rgba(15, 61, 46, 0.88), rgba(15, 61, 46, 0.88)),
        radial-gradient(circle at top, #1B5E20, #0F3D2E);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.brand {
    text-align: center;
    margin-bottom: 24px;
}

.brand-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dark);
    color: var(--white);
    font-size: 32px;
}

.brand h1 {
    margin: 0;
    font-size: 28px;
    color: var(--green-dark);
}

.brand p {
    margin: 6px 0 0;
    color: #666;
}

label {
    display: block;
    margin: 16px 0 8px;
    font-weight: 700;
}

input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #ddd4c7;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 17px;
    background: #fffdf8;
}

input:focus {
    outline: 3px solid rgba(255, 140, 0, 0.25);
    border-color: var(--orange);
}

.btn-primary {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 16px;
    margin-top: 22px;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.link-button {
    width: 100%;
}

.alert {
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-weight: 700;
}

.alert.error {
    background: #ffebee;
    color: var(--danger);
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.topbar {
    min-height: 64px;
    background: var(--green-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.topbar small {
    display: block;
    color: #d9eadc;
    margin-top: 2px;
}

.logout-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.container {
    padding: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.welcome-card {
    background: var(--white);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.welcome-card h1 {
    margin-top: 0;
    color: var(--green-dark);
}

.grid-actions {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.action-card {
    display: block;
    padding: 18px;
    border-radius: 20px;
    background: #fffdf8;
    border: 1px solid #eadfce;
    text-decoration: none;
    color: var(--text);
}

.action-card span {
    font-size: 28px;
}

.action-card strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: var(--green-dark);
}

.action-card small {
    display: block;
    margin-top: 4px;
    color: #666;
}

@media (min-width: 720px) {
    .grid-actions {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-header,
.section-header-row,
.detail-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.page-header h1,
.detail-hero h1,
.section-header-row h2 {
    margin: 0;
    color: var(--green-dark);
}

.page-header p,
.detail-hero p,
.section-header-row p {
    margin: 4px 0 0;
    color: #666;
}

.btn-small-primary {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: none;
}

.search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 16px;
}

.search-box button {
    min-height: 52px;
    border: none;
    border-radius: 14px;
    padding: 0 18px;
    background: var(--green-dark);
    color: white;
    font-weight: 800;
}

.plot-list,
.tree-list {
    display: grid;
    gap: 14px;
}

.plot-card,
.form-card,
.info-card,
.detail-hero,
.tree-card {
    background: var(--white);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.plot-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.plot-card h2,
.tree-card h3 {
    margin: 0;
    color: var(--green-dark);
}

.plot-card p,
.tree-card p {
    margin: 4px 0 0;
    color: #666;
}

.plot-badge {
    background: #e8f2e9;
    color: var(--green-dark);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.plot-info,
.info-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.plot-info div,
.info-list div {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 16px;
    padding: 12px;
}

.plot-info span,
.info-list span {
    display: block;
    color: #666;
    font-size: 14px;
}

.plot-info strong,
.info-list strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    word-break: break-word;
}

.plot-actions {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.6fr;
    gap: 8px;
    margin-top: 16px;
}

.plot-actions form {
    margin: 0;
}

.btn-card-main,
.btn-card-secondary,
.btn-card-danger,
.btn-map,
.btn-gps {
    min-height: 46px;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-card-main {
    background: var(--green-dark);
    color: white;
}

.btn-card-secondary {
    background: #e8f2e9;
    color: var(--green-dark);
}

.btn-card-danger {
    width: 100%;
    background: #ffebee;
    color: #c62828;
    cursor: pointer;
}

.form-card h1 {
    margin: 0;
    color: var(--green-dark);
}

.form-card p {
    margin: 6px 0 18px;
    color: #666;
}

.required {
    color: #c62828;
}

textarea {
    width: 100%;
    border: 1px solid #ddd4c7;
    border-radius: 14px;
    padding: 14px;
    font-size: 17px;
    background: #fffdf8;
    resize: vertical;
    font-family: inherit;
}

textarea:focus {
    outline: 3px solid rgba(255, 140, 0, 0.25);
    border-color: var(--orange);
}

.gps-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-gps {
    width: 100%;
    margin-top: 12px;
    background: #e8f2e9;
    color: var(--green-dark);
    cursor: pointer;
}

.gps-status {
    margin-top: 10px;
    padding: 12px;
    border-radius: 14px;
    font-weight: 700;
    display: none;
}

.gps-status.loading,
.gps-status.success,
.gps-status.error {
    display: block;
}

.gps-status.loading {
    background: #fff8e1;
    color: #8b5e00;
}

.gps-status.success {
    background: #e8f5e9;
    color: var(--green-dark);
}

.gps-status.error {
    background: #ffebee;
    color: #c62828;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.summary-card {
    background: var(--green-dark);
    color: white;
    border-radius: 20px;
    padding: 16px;
    min-height: 110px;
}

.summary-card span {
    display: block;
    color: #d9eadc;
    font-size: 14px;
}

.summary-card strong {
    display: block;
    font-size: 26px;
    margin-top: 8px;
}

.summary-card small {
    display: block;
    color: #d9eadc;
}

.btn-map {
    width: 100%;
    margin-top: 16px;
    background: var(--wood);
    color: white;
}

.empty-state {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.empty-state.small {
    padding: 22px;
}

.empty-icon {
    font-size: 46px;
    margin-bottom: 10px;
}

.empty-state h2 {
    margin: 0;
    color: var(--green-dark);
}

.empty-state p {
    color: #666;
}

.alert.success {
    background: #e8f5e9;
    color: var(--green-dark);
}

.tree-card {
    display: grid;
    gap: 12px;
}

.tree-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.tree-meta span {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 14px;
    padding: 10px;
    font-weight: 700;
}

@media (max-width: 520px) {
    .page-header,
    .section-header-row,
    .detail-hero {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-small-primary {
        width: 100%;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .plot-actions {
        grid-template-columns: 1fr;
    }

    .gps-row {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

.tree-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.log-table-card {
    background: var(--white);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.log-table-scroll {
    overflow-x: auto;
}

.log-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.log-table th,
.log-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eadfce;
    text-align: left;
    white-space: nowrap;
}

.log-table th {
    background: #fff8e8;
    color: var(--green-dark);
    font-weight: 900;
}

.log-table td {
    font-weight: 700;
}

.danger-zone {
    margin-top: 18px;
}

.btn-danger-full {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 16px;
    background: #ffebee;
    color: #c62828;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
}


.hero-actions {
    display: flex;
    gap: 8px;
}

.btn-small-secondary {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: #e8f2e9;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: none;
}

.share-card {
    background: var(--white);
    border-radius: 22px;
    padding: 18px;
    margin-top: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.share-card h2 {
    margin: 0;
    color: var(--green-dark);
}

.share-card p {
    color: #666;
    margin: 6px 0 16px;
}

.btn-line-share {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    background: #06C755;
    color: white;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 16px;
    margin-top: 10px;
    background: var(--green-dark);
    color: white;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
}

.report-textarea {
    margin-top: 14px;
    min-height: 240px;
    font-size: 15px;
    line-height: 1.6;
    background: #fffdf8;
}

.report-tree-list {
    display: grid;
    gap: 10px;
}

.report-tree-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr 1fr;
    gap: 8px;
    align-items: center;
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 16px;
    padding: 12px;
}

.report-tree-row span {
    display: block;
    color: #666;
    font-size: 13px;
}

.report-tree-row strong {
    display: block;
    color: var(--text);
}

@media (max-width: 520px) {
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .report-tree-row {
        grid-template-columns: 1fr;
    }
}

.dashboard-hero {
    background:
        linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(27, 94, 32, 0.92)),
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.22), transparent 35%);
    color: white;
    border-radius: 26px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 14px 36px rgba(15, 61, 46, 0.22);
}

.dashboard-hero h1 {
    margin: 4px 0 8px;
    font-size: 30px;
}

.dashboard-hero p {
    margin: 0;
    color: #e4f1e7;
}

.eyebrow {
    font-weight: 800;
    color: #ffe6b8 !important;
}

.trial-pill {
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
    font-size: 14px;
}

.trial-pill.normal {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.trial-pill.warning {
    background: #fff3cd;
    color: #8a5a00;
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.dashboard-stat-card {
    background: var(--white);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
    border: 1px solid #edf0ea;
}

.dashboard-stat-card span {
    display: block;
    color: #666;
    font-weight: 700;
    font-size: 14px;
}

.dashboard-stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 30px;
    line-height: 1;
    color: var(--green-dark);
}

.dashboard-stat-card small {
    display: block;
    margin-top: 8px;
    color: #777;
    font-weight: 700;
}

.dashboard-stat-card.highlight {
    background: #fff8e8;
    border-color: #f3d19b;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

@media (max-width: 980px) {
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

.quick-action {
    background: var(--white);
    border-radius: 22px;
    padding: 18px;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
    border: 1px solid #edf0ea;
}

.quick-action.primary {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.quick-action span {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.quick-action strong {
    display: block;
    font-size: 18px;
}

.quick-action small {
    display: block;
    margin-top: 5px;
    color: #666;
}

.quick-action.primary small {
    color: #fff6e7;
}

.dashboard-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard-panel {
    background: var(--white);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.panel-header h2 {
    margin: 0;
    color: var(--green-dark);
}

.panel-header p {
    margin: 4px 0 0;
    color: #666;
}

.panel-header a {
    color: var(--green-dark);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.dashboard-list {
    display: grid;
    gap: 10px;
}

.dashboard-list-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 18px;
    padding: 14px;
    text-decoration: none;
    color: var(--text);
}

.dashboard-list-item strong {
    display: block;
    color: var(--green-dark);
}

.dashboard-list-item span {
    display: block;
    color: #666;
    margin-top: 3px;
    font-size: 14px;
}

.list-metrics {
    text-align: right;
}

.list-metrics b {
    display: block;
    color: var(--text);
    margin-top: 3px;
    white-space: nowrap;
}

.mini-empty {
    border: 1px dashed #d9cbb7;
    background: #fffdf8;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

.mini-empty strong {
    display: block;
    color: var(--green-dark);
}

.mini-empty span {
    display: block;
    color: #666;
    margin-top: 4px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.insight-card {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 18px;
    padding: 16px;
}

.insight-card span {
    display: block;
    color: #666;
    font-weight: 700;
}

.insight-card strong {
    display: block;
    margin-top: 8px;
    font-size: 26px;
    color: var(--green-dark);
}

.insight-card small {
    display: block;
    color: #777;
    margin-top: 4px;
    font-weight: 700;
}

@media (max-width: 860px) {
    .dashboard-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-two-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .dashboard-hero {
        flex-direction: column;
        padding: 22px;
    }

    .dashboard-hero h1 {
        font-size: 26px;
    }

    .trial-pill {
        width: 100%;
        text-align: center;
    }

    .dashboard-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .dashboard-stat-card {
        padding: 14px;
        border-radius: 18px;
    }

    .dashboard-stat-card strong {
        font-size: 24px;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .dashboard-list-item {
        grid-template-columns: 1fr;
    }

    .list-metrics {
        text-align: left;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .insight-grid {
        grid-template-columns: 1fr;
    }
}
.hero-export-button {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    background: var(--orange);
    color: white;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.summary-filter-card {
    background: var(--white);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.summary-filter-card label {
    margin-top: 0;
}

.summary-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.btn-filter-submit,
.btn-filter-clear {
    min-height: 52px;
    border-radius: 14px;
    font-weight: 900;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-filter-submit {
    background: var(--green-dark);
    color: white;
    cursor: pointer;
}

.btn-filter-clear {
    background: #e8f2e9;
    color: var(--green-dark);
}

.dashboard-list-item.no-link {
    text-decoration: none;
    cursor: default;
}

.summary-tool-grid {
    display: grid;
    gap: 10px;
}

.summary-tool-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    align-items: center;
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 18px;
    padding: 14px;
    color: var(--text);
    text-decoration: none;
}

.summary-tool-card.primary {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.summary-tool-card span {
    font-size: 26px;
    grid-row: span 2;
}

.summary-tool-card strong {
    display: block;
    color: var(--green-dark);
}

.summary-tool-card.primary strong {
    color: white;
}

.summary-tool-card small {
    color: #666;
}

.summary-tool-card.primary small {
    color: #fff6e7;
}

.summary-table-scroll {
    overflow-x: auto;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

.summary-table th,
.summary-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eadfce;
    text-align: left;
    vertical-align: top;
}

.summary-table th {
    background: #fff8e8;
    color: var(--green-dark);
    font-weight: 900;
    white-space: nowrap;
}

.summary-table td {
    font-weight: 700;
}

.summary-table td span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 4px;
}

.table-action {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    background: var(--green-dark);
    color: white;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 860px) {
    .summary-filter-card {
        grid-template-columns: 1fr 1fr;
    }

    .summary-filter-actions {
        grid-column: span 2;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .hero-export-button {
        width: 100%;
    }

    .summary-filter-card {
        grid-template-columns: 1fr;
    }

    .summary-filter-actions {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}
.form-section-title {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 26px 0 14px;
    padding: 14px;
    background: #fff8e8;
    border: 1px solid #f0d8aa;
    border-radius: 18px;
}

.form-section-title:first-of-type {
    margin-top: 8px;
}

.form-section-title span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--green-dark);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.form-section-title strong {
    display: block;
    color: var(--green-dark);
    font-size: 17px;
}

.form-section-title small {
    display: block;
    margin-top: 3px;
    color: #666;
}

select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #ddd4c7;
    border-radius: 14px;
    padding: 0 14px;
    font-size: 17px;
    background: #fffdf8;
    font-family: inherit;
}

select:focus {
    outline: 3px solid rgba(255, 140, 0, 0.25);
    border-color: var(--orange);
}
.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.btn-call-owner,
.btn-call-broker {
    min-height: 52px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-call-owner {
    background: var(--green-dark);
    color: white;
}

.btn-call-broker {
    background: var(--orange);
    color: white;
}

@media (max-width: 520px) {
    .contact-actions {
        grid-template-columns: 1fr;
    }
}

.muted-text {
    color: #666;
    margin-top: 4px;
}

.photo-upload-form {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 18px;
    padding: 14px;
    margin-top: 14px;
    margin-bottom: 16px;
}

.photo-upload-form input[type="file"] {
    padding: 12px;
    height: auto;
    min-height: 54px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.photo-card {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 18px;
    overflow: hidden;
}

.photo-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #eee;
}

.photo-info {
    padding: 12px;
}

.photo-info strong {
    display: block;
    color: var(--green-dark);
}

.photo-info span {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 13px;
}

.photo-info p {
    color: #555;
    margin: 8px 0 0;
    font-size: 14px;
}

.btn-photo-delete {
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #ffebee;
    color: #c62828;
    font-weight: 900;
    cursor: pointer;
}

.public-report-box {
    margin-top: 16px;
    background: #e8f2e9;
    border: 1px solid #cfe3d2;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.public-report-box span {
    font-weight: 900;
    color: var(--green-dark);
}

.public-report-box input {
    background: white;
    font-size: 14px;
}

@media (max-width: 640px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-card img {
        height: 220px;
    }
}

.photo-section-subtitle {
    color: var(--green-dark);
    margin: 18px 0 10px;
}

.report-photo-grid {
    margin-bottom: 18px;
}


/*css index */

.market-page {
    background: #f7f7f5;
}

.market-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 247, 245, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e6dccb;
}

.market-nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.market-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    text-decoration: none;
    font-size: 20px;
}

.market-logo span {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: var(--green-dark);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.market-menu {
    display: flex;
    gap: 18px;
}

.market-menu a,
.market-login {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 800;
}

.market-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.market-trial {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
}

.market-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 18px 42px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.market-badge {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: #fff8e8;
    color: #8a5a00;
    font-weight: 900;
    border: 1px solid #efd6a4;
    margin-bottom: 18px;
}

.market-hero h1 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.market-hero p {
    margin: 18px 0 0;
    color: #4a4a4a;
    font-size: 19px;
    line-height: 1.75;
}

.market-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.market-hero-buttons.center {
    justify-content: center;
}

.market-primary-button,
.market-secondary-button {
    min-height: 54px;
    padding: 0 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.market-primary-button {
    background: var(--orange);
    color: white;
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.25);
}

.market-secondary-button {
    background: #e8f2e9;
    color: var(--green-dark);
}

.market-primary-button.full,
.market-secondary-button.full {
    width: 100%;
}

.market-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.market-keywords span {
    padding: 8px 12px;
    border-radius: 999px;
    background: white;
    color: var(--green-dark);
    border: 1px solid #e4dac9;
    font-weight: 800;
    font-size: 14px;
}

.market-hero-card {
    background:
        linear-gradient(145deg, rgba(15, 61, 46, 0.96), rgba(27, 94, 32, 0.92)),
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.25), transparent 42%);
    color: white;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 24px 70px rgba(15, 61, 46, 0.24);
}

.hero-card-top span {
    color: #d9eadc;
    font-weight: 700;
}

.hero-card-top strong {
    display: block;
    margin-top: 4px;
    font-size: 26px;
}

.hero-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.hero-metric-grid div {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 14px;
}

.hero-metric-grid span,
.hero-metric-grid small {
    display: block;
    color: #d9eadc;
    font-size: 13px;
}

.hero-metric-grid strong {
    display: block;
    margin-top: 8px;
    font-size: 26px;
}

.hero-report-list {
    display: grid;
    gap: 10px;
}

.hero-report-list div {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    padding: 12px;
}

.hero-report-list p {
    margin: 0;
    color: white;
    font-size: 15px;
    line-height: 1.4;
}

.market-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 18px;
}

.market-section-head {
    max-width: 820px;
    margin-bottom: 22px;
}

.eyebrow-dark,
.eyebrow-light {
    margin: 0 0 8px;
    font-weight: 900;
}

.eyebrow-dark {
    color: var(--orange);
}

.eyebrow-light {
    color: #ffe6b8;
}

.market-section-head h2,
.sell-content h2,
.system-content h2,
.market-final-cta h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.market-section-head p,
.sell-content p,
.system-content p,
.market-final-cta p {
    color: #555;
    font-size: 17px;
    line-height: 1.75;
}

.wood-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.wood-type-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid #edf0ea;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.wood-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #e8f2e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.wood-type-card h3 {
    color: var(--green-dark);
    margin: 16px 0 8px;
    font-size: 22px;
}

.wood-type-card p {
    color: #666;
    line-height: 1.65;
}

.sell-section {
    max-width: none;
    background: #fff8e8;
    margin-top: 18px;
}

.sell-content {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.market-check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.market-check-list li {
    background: white;
    border: 1px solid #eadfce;
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 800;
    color: var(--green-dark);
}

.market-check-list li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 900;
    margin-right: 8px;
}

.lead-card {
    background: white;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 18px 48px rgba(15, 61, 46, 0.12);
}

.lead-card h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 26px;
}

.lead-card p {
    color: #555;
}

.lead-note {
    margin-top: 14px;
    background: #e8f2e9;
    color: var(--green-dark);
    border-radius: 16px;
    padding: 14px;
    line-height: 1.6;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.step-card {
    background: white;
    border: 1px solid #edf0ea;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.step-card span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: var(--green-dark);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.step-card p {
    color: #444;
    font-weight: 800;
    line-height: 1.55;
}

.system-section {
    max-width: none;
    background: var(--green-dark);
    color: white;
}

.system-content {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.system-content h2 {
    color: white;
}

.system-content p {
    color: #d9eadc;
}

.system-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.system-feature-grid div {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 18px;
    font-weight: 900;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.faq-item {
    background: white;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid #edf0ea;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.faq-item h3 {
    margin: 0;
    color: var(--green-dark);
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.market-final-cta {
    margin: 28px auto 46px;
    max-width: 980px;
    padding: 38px 22px;
    border-radius: 30px;
    background: #fff8e8;
    text-align: center;
    border: 1px solid #f0d8aa;
}

.market-footer {
    background: #0b2d22;
    color: white;
    padding: 28px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.market-footer p {
    color: #d9eadc;
    margin: 6px 0 0;
}

.market-footer a {
    color: white;
    font-weight: 800;
    text-decoration: none;
    margin-left: 14px;
}

@media (max-width: 980px) {
    .market-menu {
        display: none;
    }

    .market-hero,
    .sell-content,
    .system-content {
        grid-template-columns: 1fr;
    }

    .wood-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .market-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .market-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .market-login,
    .market-trial {
        justify-content: center;
        min-height: 44px;
        border-radius: 14px;
    }

    .market-login {
        background: #e8f2e9;
    }

    .market-hero {
        padding-top: 34px;
    }

    .market-hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-metric-grid,
    .wood-type-grid,
    .step-grid,
    .system-feature-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .market-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-footer a {
        margin-left: 0;
        margin-right: 14px;
    }
}

.sell-page-container {
    max-width: 860px;
}

.success-lead-card {
    background: white;
    border-radius: 26px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.success-icon {
    font-size: 50px;
    margin-bottom: 12px;
}

.success-lead-card h2 {
    color: var(--green-dark);
    margin: 0;
}

.success-lead-card p {
    color: #666;
    line-height: 1.7;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.lead-status-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.lead-status-card {
    background: white;
    border-radius: 18px;
    padding: 14px;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
    border: 1px solid #edf0ea;
}

.lead-status-card span {
    display: block;
    color: #666;
    font-size: 13px;
    font-weight: 800;
}

.lead-status-card strong {
    display: block;
    color: var(--green-dark);
    font-size: 26px;
    margin-top: 6px;
}

.lead-list {
    display: grid;
    gap: 14px;
}

.lead-card-item {
    background: white;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.lead-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.lead-card-head h2 {
    margin: 0;
    color: var(--green-dark);
}

.lead-card-head p {
    margin: 4px 0 0;
    color: #666;
}

.lead-badge {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
    background: #e8f2e9;
    color: var(--green-dark);
}

.lead-badge.new {
    background: #fff8e1;
    color: #8a5a00;
}

.lead-badge.contacted,
.lead-badge.surveying,
.lead-badge.negotiating {
    background: #e3f2fd;
    color: #0d47a1;
}

.lead-badge.closed {
    background: #e8f5e9;
    color: #1b5e20;
}

.lead-badge.rejected {
    background: #ffebee;
    color: #c62828;
}

.lead-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.lead-info-grid div {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 16px;
    padding: 12px;
}

.lead-info-grid span {
    display: block;
    color: #666;
    font-size: 13px;
}

.lead-info-grid strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
}

.lead-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

@media (max-width: 980px) {
    .lead-status-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lead-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .lead-status-grid,
    .lead-info-grid,
    .lead-actions {
        grid-template-columns: 1fr;
    }

    .lead-card-head {
        flex-direction: column;
    }

    .lead-badge {
        width: 100%;
        text-align: center;
    }
}

.admin-user-list {
    display: grid;
    gap: 10px;
}

.admin-user-card {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    align-items: center;
}

.admin-user-card strong {
    display: block;
    color: var(--green-dark);
    font-size: 18px;
}

.admin-user-card span {
    display: block;
    color: #666;
    margin-top: 4px;
}

.admin-user-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.admin-user-tags span,
.admin-user-tags b {
    padding: 7px 10px;
    border-radius: 999px;
    background: #e8f2e9;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
}

.admin-user-tags .tag-danger {
    background: #ffebee;
    color: #c62828;
}

.admin-user-tags .tag-success {
    background: #e8f5e9;
    color: #1b5e20;
}

@media (max-width: 640px) {
    .admin-user-card {
        grid-template-columns: 1fr;
    }

    .admin-user-tags {
        justify-content: flex-start;
    }
}

.marketplace-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 18px 20px;
}

.marketplace-hero h1 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.1;
}

.marketplace-hero p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.marketplace-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
}

.market-filter-panel {
    background: white;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
    align-self: start;
    position: sticky;
    top: 84px;
}

.market-filter-panel h2 {
    margin: 0 0 14px;
    color: var(--green-dark);
}

.market-category-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 8px;
    background: #fffdf8;
    border: 1px solid #eadfce;
}

.market-category-link.active {
    background: var(--green-dark);
    color: white;
}

.market-search-card {
    background: white;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
    margin-bottom: 16px;
}

.market-search-card button {
    min-height: 52px;
    border: none;
    border-radius: 14px;
    background: var(--orange);
    color: white;
    font-weight: 900;
    padding: 0 18px;
}

.market-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.market-listing-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
    border: 1px solid #edf0ea;
}

.listing-cover {
    height: 210px;
    display: block;
    position: relative;
    background: #e8f2e9;
    overflow: hidden;
}

.listing-cover img,
.listing-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listing-cover-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, #e8f2e9, #fff8e8);
}

.listing-cover-placeholder.large {
    min-height: 360px;
    border-radius: 26px;
}

.listing-status {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--green-dark);
    color: white;
    font-weight: 900;
    font-size: 13px;
}

.listing-status.sold {
    background: #c62828;
}

.listing-status.reserved {
    background: #f57c00;
}

.listing-body {
    padding: 16px;
}

.listing-title {
    display: block;
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1.35;
    min-height: 48px;
}

.listing-price {
    color: var(--orange);
    font-weight: 1000;
    font-size: 22px;
    margin-top: 10px;
}

.listing-meta,
.listing-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 12px;
}

.listing-meta span,
.listing-stats span {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 12px;
    padding: 9px 10px;
    font-weight: 800;
    color: #555;
}

.listing-button {
    min-height: 46px;
    margin-top: 14px;
    border-radius: 14px;
    background: var(--green-dark);
    color: white;
    text-decoration: none;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-detail-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 18px 46px;
}

.listing-detail-hero {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: start;
}

.listing-detail-image {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.listing-detail-info {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.listing-detail-info h1 {
    color: var(--green-dark);
    margin: 14px 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
}

.listing-detail-price {
    color: var(--orange);
    font-size: 32px;
    font-weight: 1000;
}

.listing-detail-price small {
    display: block;
    color: #777;
    font-size: 15px;
    margin-top: 4px;
}

.listing-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.listing-detail-grid div {
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 16px;
    padding: 12px;
}

.listing-detail-grid span {
    display: block;
    color: #666;
    font-size: 13px;
}

.listing-detail-grid strong {
    display: block;
    margin-top: 4px;
}

.listing-short-desc {
    color: #555;
    line-height: 1.7;
    margin-top: 16px;
}

.listing-content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    margin-top: 18px;
}

.listing-public-card,
.listing-member-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.08);
}

.listing-public-card h2,
.listing-member-card h2 {
    color: var(--green-dark);
    margin-top: 0;
}

.listing-description {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.listing-description.member {
    margin-top: 16px;
    background: #fffdf8;
    border: 1px solid #eadfce;
    border-radius: 16px;
    padding: 14px;
}

.listing-call-button {
    margin-top: 10px;
    width: 100%;
}

.checkbox-row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    margin-top: 18px;
}

.checkbox-row input {
    width: auto;
    min-height: auto;
}

@media (max-width: 980px) {
    .marketplace-wrap,
    .listing-detail-hero,
    .listing-content-grid {
        grid-template-columns: 1fr;
    }

    .market-filter-panel {
        position: static;
    }

    .market-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-search-card {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .market-listing-grid,
    .market-search-card,
    .listing-detail-grid {
        grid-template-columns: 1fr;
    }

    .listing-cover {
        height: 230px;
    }
}

.lead-market-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

@media (max-width: 520px) {
    .lead-market-actions {
        grid-template-columns: 1fr;
    }
}