/* Compass page component — isolated. */

/* ── Pagination ── */
.compass-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 12px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.compass-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all .2s ease;
}
.compass-page-btn.prev {
    background: var(--color-primary, #0a7575);
    color: #fff;
    border: 1.5px solid transparent;
    box-shadow: none;
}
.compass-page-btn.prev:hover {
    background: var(--color-primary-dark, #047a7c);
    color: #fff;
    border-color: transparent;
}
.compass-page-btn.next {
    background: var(--color-primary, #0a7575);
    color: #fff;
    border: 1.5px solid transparent;
    box-shadow: none;
}
.compass-page-btn.next:hover {
    background: var(--color-primary-dark, #047a7c);
    box-shadow: none;
    transform: translateY(-1px);
}
.compass-page-info {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}
.compass-page-info strong { color: #0f172a; }

/* ── Breadcrumbs ── */
.compass-breadcrumb {
    padding: 10px 0 0;
}
.compass-breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0; margin: 0;
    font-size: 0.78rem;
}
.compass-breadcrumb li { color: rgba(255,255,255,.4); }
.compass-breadcrumb li a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.compass-breadcrumb li a:hover { color: #10b981; }
.compass-breadcrumb li + li::before {
    content: '\2192';
    margin-right: 6px;
    opacity: .35;
}

/* ── Empty State ── */
.compass-empty {
    text-align: center;
    padding: 80px 24px;
    color: #94a3b8;
}
.compass-empty svg {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    opacity: .3;
    display: block;
}
.compass-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #cbd5e1;
    margin: 0 0 8px;
}
.compass-empty p { font-size: 0.88rem; margin: 0; }
