/* maria-lin.com  -  custom styles on top of Tailwind CDN */

body.lang-en { font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif; }
body.lang-zh { font-family: 'Noto Sans SC', 'Inter', system-ui, sans-serif; }

/* Sortable table styling */
table.sortable thead th {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
table.sortable thead th .arrow { opacity: .35; margin-left: 4px; }
table.sortable thead th.sort-asc .arrow,
table.sortable thead th.sort-desc .arrow { opacity: 1; }

/* Property card */
.prop-card {
    transition: transform .15s ease, box-shadow .15s ease;
}
.prop-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

/* Pagination */
.pager a, .pager span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    margin-right: 4px;
    font-size: 14px;
    color: #334155;
}
.pager a:hover { background: #f1f5f9; }
.pager .current { background: #1e293b; color: white; border-color: #1e293b; }
.pager .disabled { opacity: .4; cursor: not-allowed; }
