/* =============================================================
   Crofting Register — site styles
   Matches the prototype's .content-sidebar + .right-content layout
   ============================================================= */

/* ── Page-level search layout ──────────────────────────────── */
.crofting-search-page {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: calc(100vh - 200px);
}

.content-sidebar {
    flex: 0 0 400px;
    min-width: 320px;
    max-width: 420px;
    padding: 0 1rem 1rem 0;
    overflow-y: auto;
}

.right-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .crofting-search-page {
        flex-direction: column;
    }
    .content-sidebar {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 0 0 1rem 0;
    }
}

/* ── Results table ──────────────────────────────────────────── */
.results-table {
    padding: 0.75rem 0 0.75rem 1rem;
    border-bottom: 1px solid #b3b3b3;
}

.crofting-results__summary {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.crofting-results__table {
    width: 100%;
    font-size: 0.875rem;
}

.crofting-results__table th,
.crofting-results__table td {
    padding: 0.4rem 0.6rem;
    vertical-align: top;
}

.crofting-results__table tbody tr:nth-child(odd) {
    background: #f8f8f8;
}

/* ── Map wrapper ────────────────────────────────────────────── */
.map-wrapper {
    flex: 1 1 auto;
    padding-left: 1rem;
    min-height: 480px;
    position: relative;
}

.crofting-map {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: #e8e8e8;
}

/* ── Map popup ──────────────────────────────────────────────── */
.crofting-map-popup {
    background: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 2px;
    padding: 0.75rem 2rem 0.75rem 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    min-width: 180px;
    max-width: 280px;
    font-size: 0.875rem;
    position: relative;
    transform: translateX(-50%);
}

.crofting-map-popup__title {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.crofting-map-popup__close {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    color: #333;
    padding: 0.1rem 0.3rem;
}

.crofting-map-popup__dl {
    margin: 0 0 0.4rem 0;
}

.crofting-map-popup__dl div {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.15rem;
}

.crofting-map-popup__dl dt {
    color: #595959;
    white-space: nowrap;
}

.crofting-map-popup__link {
    font-size: 0.875rem;
}

/* ── Pagination ─────────────────────────────────────────────── */
.crofting-pagination {
    margin-top: 0.75rem;
}

.ds_pagination__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.ds_pagination__link {
    background: none;
    border: 1px solid #0065bd;
    color: #0065bd;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: 2px;
}

.ds_pagination__link:hover {
    background: #0065bd;
    color: #fff;
}

.ds_current {
    font-size: 0.875rem;
    color: #333;
}

/* ── Notes panel ────────────────────────────────────────────── */
.crofting-notes {
    background: #f8f8f8;
    border-left: 4px solid #0065bd;
    padding: 0.75rem 1rem;
    white-space: pre-wrap;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ── Party address ──────────────────────────────────────────── */
.crofting-party-address {
    color: #595959;
    font-size: 0.8125rem;
}

/* ── Header ─────────────────────────────────────────────────── */
.crofting-site-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
}

.crofting-site-header__branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crofting-site-header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.crofting-site-header__logo {
    height: 48px;
    width: auto;
}

.crofting-site-header__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* ── DS summary list key width ──────────────────────────────── */
.ds_summary-list__key {
    width: 45%;
}

/* ── Tabs on detail page ────────────────────────────────────── */
.ds_tabs__content--bordered {
    border: 1px solid #b3b3b3;
    padding: 1rem;
}
