/* TaoMuna HRIS — front-end portal
   Brand: navy ink + TaoMuna blue/orange, light silver ground (from logo). */

.bhr-wrap {
	--bhr-ink: #0b1526;        /* deep navy ink */
	--bhr-blue: #0054a8;       /* TaoMuna logo blue */
	--bhr-blue-deep: #003d7a;
	--bhr-orange: #fd8002;     /* TaoMuna logo orange */
	--bhr-sky: #eaf0fb;
	--bhr-ground: #f2f3f5;     /* logo background silver */
	--bhr-card: #ffffff;
	--bhr-line: #e3e7ee;
	--bhr-muted: #5b6575;
	--bhr-ok: #0f9d58;
	--bhr-warn: #d93025;

	font-family: "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
	color: var(--bhr-ink);
	background: var(--bhr-ground);
	padding: 28px 20px 60px;
	margin: 0 auto;
	max-width: 1080px;
	border-radius: 18px;
	box-sizing: border-box;
}
.bhr-wrap *, .bhr-wrap *::before, .bhr-wrap *::after { box-sizing: border-box; }

.bhr-logo img { height: 34px; width: auto; display: block; }

/* ---------------------------------------------------------- Cards */
.bhr-card {
	background: var(--bhr-card);
	border: 1px solid var(--bhr-line);
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 1px 2px rgba(11, 21, 38, 0.04);
}
.bhr-card h2 {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin: 0 0 16px;
	color: var(--bhr-ink);
}
.bhr-card--center { text-align: center; display: grid; gap: 14px; justify-items: center; max-width: 380px; margin: 60px auto; }
.bhr-muted { color: var(--bhr-muted); font-size: 13px; margin: 6px 0; }

/* ---------------------------------------------------------- Login */
.bhr-wrap--login { min-height: 70vh; display: grid; place-items: center; }
.bhr-login-panel { width: 100%; max-width: 400px; }
.bhr-login-brand { text-align: center; margin-bottom: 22px; display: grid; justify-items: center; gap: 8px; }
.bhr-login-brand h1 { font-size: 24px; font-weight: 800; margin: 8px 0 0; letter-spacing: -0.02em; }
.bhr-login-brand p { color: var(--bhr-muted); font-size: 14px; margin: 0; }

/* ---------------------------------------------------------- Forms */
.bhr-form { display: grid; gap: 14px; }
.bhr-field { display: grid; gap: 6px; }
.bhr-field span { font-size: 12px; font-weight: 600; color: var(--bhr-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.bhr-field input, .bhr-field textarea {
	width: 100%;
	border: 1.5px solid var(--bhr-line);
	border-radius: 10px;
	padding: 11px 13px;
	font: inherit;
	font-size: 14px;
	color: var(--bhr-ink);
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.bhr-field select {
	width: 100%;
	border: 1.5px solid var(--bhr-line);
	border-radius: 10px;
	padding: 11px 36px 11px 13px;
	font: inherit;
	font-size: 14px;
	color: var(--bhr-ink);
	background-color: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	user-select: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3e%3cpath d='M1 1l6 6 6-6' fill='none' stroke='%235b6575' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 13px center;
}
.bhr-field input:focus, .bhr-field select:focus, .bhr-field textarea:focus {
	outline: none;
	border-color: var(--bhr-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.bhr-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--bhr-muted); }
.bhr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* -------------------------------------------------------- Buttons */
.bhr-btn {
	display: inline-block;
	background: var(--bhr-blue);
	color: #fff !important;
	border: none;
	border-radius: 10px;
	padding: 12px 22px;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none !important;
	text-align: center;
	transition: background 0.15s, transform 0.1s;
}
.bhr-btn:hover { background: var(--bhr-blue-deep); }
.bhr-btn:active { transform: translateY(1px); }
.bhr-btn:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.4); outline-offset: 2px; }
.bhr-btn--block { width: 100%; }
.bhr-btn--big { width: 100%; padding: 15px; font-size: 16px; border-radius: 12px; }
.bhr-btn--ghost { background: transparent; color: var(--bhr-ink) !important; border: 1.5px solid var(--bhr-line); }
.bhr-btn--ghost:hover { background: var(--bhr-sky); border-color: var(--bhr-blue); }
.bhr-btn[disabled] { opacity: 0.6; cursor: wait; }
.bhr-link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--bhr-blue); text-decoration: none; font-weight: 600; }
.bhr-link:hover { text-decoration: underline; }

/* ------------------------------------------------------- Notices */
.bhr-notice { border-radius: 10px; padding: 12px 14px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.bhr-notice--error { background: #fdeceb; color: var(--bhr-warn); }
.bhr-notice--ok { background: #e6f4ea; color: var(--bhr-ok); }

/* -------------------------------------------------------- Topbar */
.bhr-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.bhr-topbar-user { display: flex; align-items: center; gap: 12px; min-width: 0; }
.bhr-topbar-user > div { min-width: 0; }
.bhr-topbar-user strong { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.bhr-topbar-user small { display: block; color: var(--bhr-muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.bhr-avatar {
	width: 40px; height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--bhr-ink);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 16px;
}

/* ---------------------------------------------------------- Tabs */
.bhr-tabnav {
	display: flex;
	gap: 6px;
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	margin: 18px 0 16px;
	border-bottom: 1.5px solid var(--bhr-line);
	padding-bottom: 0;
}
.bhr-tabnav::-webkit-scrollbar { display: none; }
.bhr-tab {
	appearance: none;
	border: none;
	background: none;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	font-size: 13.5px;
	color: var(--bhr-muted);
	padding: 10px 14px;
	border-radius: 8px 8px 0 0;
	border-bottom: 2.5px solid transparent;
	margin-bottom: -1.5px;
	white-space: nowrap;
	flex: 0 0 auto;
	transition: color .15s ease, background .15s ease, border-color .15s ease;
	position: relative;
}
.bhr-tab:hover { color: var(--bhr-ink); background: var(--bhr-sky); }
.bhr-tab.is-active { color: var(--bhr-blue); border-bottom-color: var(--bhr-blue); background: var(--bhr-sky); }
.bhr-tab .bhr-tab-badge {
	display: inline-block;
	min-width: 17px;
	height: 17px;
	line-height: 17px;
	padding: 0 5px;
	margin-left: 6px;
	border-radius: 99px;
	background: var(--bhr-warn);
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
	text-align: center;
	vertical-align: 2px;
}
.bhr-tabpanel { display: none; }
.bhr-tabpanel.is-active { display: block; animation: bhr-fade .15s ease; }
.bhr-tabpanel.is-loading { opacity: .5; transition: opacity .15s ease; pointer-events: none; }
@keyframes bhr-fade { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 640px) {
	.bhr-tabnav { gap: 2px; }
	.bhr-tab { padding: 9px 10px; font-size: 12.5px; }
}

/* ---------------------------------------------------------- Grid */
.bhr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bhr-span2 { grid-column: span 2; }
@media (max-width: 760px) {
	.bhr-grid { grid-template-columns: 1fr; }
	.bhr-span2 { grid-column: span 1; }
}

/* ----------------------------------------- Clock (signature card) */
.bhr-clock {
	background: linear-gradient(160deg, var(--bhr-ink) 0%, #14233f 70%, #1a3a75 100%);
	color: #fff;
	border: none;
	display: grid;
	gap: 10px;
}
.bhr-clock .bhr-muted { color: rgba(255, 255, 255, 0.65); }
.bhr-clock-status { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.bhr-dot { width: 9px; height: 9px; border-radius: 50%; background: #7a8699; }
.bhr-clock.is-in .bhr-dot {
	background: #34d399;
	box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
	animation: bhr-pulse 2s infinite;
}
@keyframes bhr-pulse {
	0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
	100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.bhr-clock.is-in .bhr-dot { animation: none; }
}
.bhr-clock-timer {
	font-size: 46px;
	font-weight: 800;
	letter-spacing: 0.02em;
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
}
.bhr-clock .bhr-btn--big { background: var(--bhr-blue); }
.bhr-clock.is-in .bhr-btn--big { background: rgba(255, 255, 255, 0.12); border: 1.5px solid rgba(255, 255, 255, 0.35); }
.bhr-clock.is-in .bhr-btn--big:hover { background: rgba(255, 255, 255, 0.2); }
.bhr-clock-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 8px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.bhr-clock-stats small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.bhr-clock-stats strong { font-size: 16px; font-weight: 700; }

/* -------------------------------------------------------- Tables */
.bhr-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -2px; }
.bhr-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 13.5px;
	border: 1px solid var(--bhr-line);
	border-radius: 10px;
	overflow: hidden;
}
.bhr-table th {
	text-align: left;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #fff;
	background: var(--bhr-ink);
	padding: 12px 14px;
	border: 0;
	white-space: nowrap;
}
.bhr-table td { padding: 12px 14px; border-bottom: 1px solid var(--bhr-line); }
.bhr-table tbody tr:last-child td { border-bottom: none; }
.bhr-table tbody tr:nth-child(even) td { background: var(--bhr-ground); }
.bhr-table tbody tr:hover td { background: var(--bhr-sky); }
.bhr-table tbody tr.is-today td { background: var(--bhr-sky); }
input.bhr-live-search {
	display: block;
	border: 1.5px solid var(--bhr-line);
	border-radius: 10px;
	padding: 9px 13px;
	font: inherit;
	font-size: 13.5px;
	color: var(--bhr-ink);
	background: #fff;
}
input.bhr-live-search:focus { outline: none; border-color: var(--bhr-blue); box-shadow: 0 0 0 3px rgba(0, 84, 168, 0.12); }
.bhr-sortable th.is-sortable { cursor: pointer; user-select: none; white-space: nowrap; }
.bhr-sortable th.is-sortable:hover { color: var(--bhr-orange); }
.bhr-sortable th.is-sortable::after { content: '\2195'; opacity: .5; margin-left: 4px; font-size: 11px; }
.bhr-sortable th.is-sorted-asc::after { content: '\2191'; opacity: 1; color: var(--bhr-orange); }
.bhr-sortable th.is-sorted-desc::after { content: '\2193'; opacity: 1; color: var(--bhr-orange); }

/* -------------------------------------------------------- Badges */
.bhr-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 99px;
	font-size: 11.5px;
	font-weight: 700;
}
.bhr-badge--pending { background: #fef3cd; color: #8a6d1a; }
.bhr-badge--approved { background: #e6f4ea; color: var(--bhr-ok); }
.bhr-badge--rejected { background: #fdeceb; color: var(--bhr-warn); }
.bhr-badge--live { background: rgba(37, 99, 235, 0.12); color: var(--bhr-blue); }

/* ------------------------------------------------- Announcements */
.bhr-announce { margin-bottom: 18px; border-left: 4px solid var(--bhr-blue); }
.bhr-announce-item { padding: 10px 0; border-bottom: 1px solid var(--bhr-line); }
.bhr-announce-item:last-child { border-bottom: none; padding-bottom: 0; }
.bhr-announce-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.bhr-announce-head small { color: var(--bhr-muted); white-space: nowrap; }
.bhr-announce-item p { margin: 4px 0 0; font-size: 13.5px; color: var(--bhr-muted); }

/* --------------------------------------------------- File lists */
.bhr-files { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.bhr-files li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px 12px;
	padding: 10px 12px;
	border: 1px solid var(--bhr-line);
	border-radius: 10px;
	background: var(--bhr-sky);
}
.bhr-files li > div { min-width: 0; }
.bhr-files strong { display: block; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; }
.bhr-files small { color: var(--bhr-muted); font-size: 12px; }
.bhr-btn--sm { padding: 7px 14px; font-size: 12.5px; white-space: nowrap; }

/* --------------------------------------------- Clock error line */
.bhr-clock-error { color: #fca5a5; font-size: 13px; font-weight: 600; margin: 0; }

/* ------------------------------------------------ Shift calendar */
.bhr-cal { margin-bottom: 18px; }
.bhr-cal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.bhr-cal-head h2 { margin: 0; }
.bhr-cal-nav { display: flex; align-items: center; gap: 14px; }
.bhr-cal-nav strong { font-size: 14px; min-width: 110px; text-align: center; }
.bhr-cal-nav a {
	display: grid; place-items: center;
	width: 30px; height: 30px;
	border: 1.5px solid var(--bhr-line);
	border-radius: 8px;
	color: var(--bhr-ink);
	text-decoration: none;
	font-size: 15px;
	transition: border-color 0.15s, background 0.15s;
}
.bhr-cal-nav a:hover { border-color: var(--bhr-blue); background: var(--bhr-sky); }
.bhr-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bhr-cal-daynames { margin-bottom: 4px; }
.bhr-cal-daynames div {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--bhr-muted);
	padding: 4px 0;
}
.bhr-cal-cell {
	min-height: 58px;
	border: 1px solid var(--bhr-line);
	border-radius: 8px;
	padding: 5px 6px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #fff;
}
.bhr-cal-empty { border: none; background: transparent; }
.bhr-cal-daynum { font-size: 12px; font-weight: 700; color: var(--bhr-muted); }
.bhr-cal-cell.has-shift { background: var(--bhr-sky); border-color: #c8d8f6; }
.bhr-cal-cell.has-shift .bhr-cal-daynum { color: var(--bhr-blue-deep); }
.bhr-cal-cell.is-leave { background: #fef7e6; border-color: #f0dfae; }
.bhr-cal-cell.is-today { outline: 2px solid var(--bhr-blue); outline-offset: -2px; }
.bhr-cal-chip {
	display: inline-block;
	background: var(--bhr-blue);
	color: #fff;
	border-radius: 6px;
	padding: 2px 5px;
	font-size: 10.5px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.bhr-cal-chip--leave { background: #b8860b; }
.bhr-cal-legend { display: flex; gap: 18px; margin-top: 12px; font-size: 12px; color: var(--bhr-muted); flex-wrap: wrap; }
.bhr-cal-legend span { display: flex; align-items: center; gap: 6px; }
.bhr-leg { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.bhr-leg--shift { background: var(--bhr-blue); }
.bhr-leg--leave { background: #b8860b; }
.bhr-leg--today { border: 2px solid var(--bhr-blue); background: #fff; }
/* Never let grid content force the calendar wider than its card */
.bhr-cal { overflow: hidden; }
.bhr-cal-grid { width: 100%; min-width: 0; }
.bhr-cal-cell { min-width: 0; }
.bhr-cal-chip { display: block; min-width: 0; }
.bhr-cal-t-short { display: none; }

/* ------------------------------------------------- Employee details */
.bhr-details-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 20px;
	margin-top: 4px;
}
.bhr-detail-item small {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bhr-muted);
	margin-bottom: 3px;
}
.bhr-detail-item strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--bhr-ink);
	word-break: break-word;
}

@media (max-width: 640px) {
	.bhr-wrap { padding: 18px 10px 44px; border-radius: 12px; }
	.bhr-card { padding: 16px 14px; }
	.bhr-row { grid-template-columns: 1fr; }
	.bhr-table { font-size: 12.5px; }
	.bhr-table th, .bhr-table td { padding: 8px 8px; }
	.bhr-btn--sm { padding: 9px 14px; }
	.bhr-topbar-user .bhr-btn--ghost { padding: 8px 12px; font-size: 12.5px; }
	.bhr-cal-grid { gap: 3px; }
	.bhr-details-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 16px; }
	.bhr-cal-cell { min-height: 46px; padding: 3px 4px; border-radius: 6px; gap: 2px; }
	.bhr-cal-daynum { font-size: 10.5px; }
	.bhr-cal-daynames div { font-size: 9.5px; letter-spacing: 0.02em; }
	.bhr-cal-chip { font-size: 9.5px; padding: 2px 3px; border-radius: 4px; letter-spacing: 0; }
	.bhr-cal-t-full { display: none; }
	.bhr-cal-t-short { display: inline; }
	.bhr-cal-legend { gap: 12px; font-size: 11px; }
	.bhr-clock-timer { font-size: 38px; }
}

/* ------------------------------------------------ Team approvals */
.bhr-team { border-left: 4px solid var(--bhr-blue); }
.bhr-team-actions { white-space: nowrap; display: flex; gap: 6px; }
.bhr-team-reason { color: var(--bhr-muted); font-size: 12.5px; }

/* ---------------------------------------------- Team status badges */
.bhr-badge--in { background: #e6f4ea; color: var(--bhr-ok); }
.bhr-badge--off { background: #eef0f3; color: var(--bhr-muted); }
.bhr-badge--leave { background: var(--bhr-sky); color: var(--bhr-blue); }
.bhr-badge--absent { background: #fdeceb; color: var(--bhr-warn); }

/* ----------------------------------------- Clock: late & missed states */
.bhr-badge--late { background: #fef3cd; color: #8a6d1a; margin-left: 6px; }
.bhr-clock.is-stale { background: linear-gradient(160deg, #3a2a10 0%, #4a3410 70%, #6b4a12 100%); }
.bhr-clock.is-stale .bhr-dot { background: #f59e0b; }
.bhr-clock-stale-note { color: #fcd34d; font-size: 13px; font-weight: 600; margin: 0; line-height: 1.5; }
.bhr-badge--under { background: #fdeceb; color: #b32d2e; margin-left: 6px; }

/* ------------------------------------------------------- Error popup */
.bhr-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(11, 21, 38, 0.55);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
	padding: 40px 16px;
	z-index: 10000;
}
.bhr-modal-overlay[hidden] { display: none; }
.bhr-modal {
	background: var(--bhr-card);
	border-radius: 14px;
	padding: 28px 30px 24px;
	max-width: 380px;
	width: 100%;
	position: relative;
	box-shadow: 0 20px 60px rgba(11, 21, 38, 0.35);
	text-align: center;
}
.bhr-modal h2 { margin: 0 0 6px; font-size: 19px; padding-right: 28px; }
.bhr-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: transparent;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: var(--bhr-muted);
	padding: 4px 8px;
}
.bhr-modal-close:hover { color: var(--bhr-ink); }

/* --------------------------------------------------- Client-side table pagination */
.bhr-hide-page,
.bhr-hide-search { display: none !important; }

.bhr-tablepager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 12px 0 4px;
	font-size: 12.5px;
	color: var(--bhr-muted);
}
.bhr-tablepager-count { font-weight: 600; color: var(--bhr-blue); }
.bhr-tablepager-sizes { display: inline-flex; align-items: center; gap: 6px; }
.bhr-tablepager-size {
	min-width: 34px;
	padding: 3px 9px;
	border: 1px solid var(--bhr-line);
	border-radius: 6px;
	background: var(--bhr-card);
	color: var(--bhr-muted);
	font: inherit;
	font-size: 12.5px;
	cursor: pointer;
}
.bhr-tablepager-size:hover { border-color: var(--bhr-blue); color: var(--bhr-blue); }
.bhr-tablepager-size.is-active {
	background: var(--bhr-blue);
	border-color: var(--bhr-blue);
	color: #fff;
	font-weight: 700;
}
.bhr-tablepager-nav { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
.bhr-tablepager-page { color: var(--bhr-muted); }
.bhr-tablepager-prev,
.bhr-tablepager-next {
	padding: 3px 10px;
	border: 1px solid var(--bhr-line);
	border-radius: 6px;
	background: var(--bhr-card);
	color: var(--bhr-blue);
	font: inherit;
	font-size: 12.5px;
	cursor: pointer;
}
.bhr-tablepager-prev:hover:not(:disabled),
.bhr-tablepager-next:hover:not(:disabled) { border-color: var(--bhr-blue); }
.bhr-tablepager-prev:disabled,
.bhr-tablepager-next:disabled { opacity: .45; cursor: default; }
@media (max-width: 640px) {
	.bhr-tablepager-nav { margin-left: 0; }
}
