/* ── Shared buttons ───────────────────────────────────────────────── */

/* Primary View button (table action) */
.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2889aa;
    color: #fff;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, background 0.15s;
    white-space: nowrap;
}
.btn-view:hover { opacity: 0.85; color: #fff; }

/* Primary CTA */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #2889aa;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.btn-primary:hover { background: #206f8c; color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

/* Prev/Next pagination buttons */
.btn-prev-next {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    color: #101828;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-prev-next:hover:not(:disabled) { border-color: #2889aa; color: #2889aa; }
.btn-prev-next:disabled { opacity: 0.4; cursor: not-allowed; }
