#toasts {
	position: fixed;
	right: 10px;
	top: 5px;
	z-index: 1001;
}
#toasts > * {
	background-color: #000A;
	border-radius: 10px;
	clear: both;
	color: white;
	cursor: zoom-out;
	float: right;
	margin-top: 5px;
	padding: 3px 6px;
}
:root {
	--bg: #f7f7f8;
	--fg: #1a1a1a;
	--muted: #6b7280;
	--accent: #d4321c;
	--line: #e4e4e7;
	--head: #f3f4f6;
}
* {
	box-sizing: border-box;
}
html {
	margin: 0;
	padding: 0;
}
body {
	margin: 50px 12px 12px 152px;
	padding: 0;
	background: #F1F1F1;
	color: var(--fg);
	font: 14px/1.4 -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
	transition: margin 400ms;
}
a {
	color: var(--accent);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
#bo-nav-header,
#bo-nav-menu
{
	background-color: #333;
	position: fixed;
}
#bo-nav-header {
	color: white;
	left: 0;
	top: 0;
	right: 0;
	height: 36px;
	line-height: 24px;
	padding: 6px 14px 0;
	white-space: nowrap;
	z-index: 2;
	font-weight: 600;
}
#bo-nav-header a {
	color: white;
	font-size: 14px;
}
#bo-nav-header .right {
	float: right;
	font-weight: 400;
	font-size: 12px;
	color: #ccc;
}
#bo-nav-header .right i {
	color: #ccc;
	margin-right: 4px;
}
#bo-nav-toggle {
	background-color: #d8c5a8;
	border: 1px solid white;
	border-radius: 3px;
	color: white;
	cursor: pointer;
	display: none;
	float: left;
	font-size: 1.4em;
	margin: -2px 8px 0 0;
	padding: 2px 6px;
}
#bo-nav-menu {
	bottom: 0;
	left: 0;
	padding-top: 42px;
	top: 0;
	width: 140px;
	overflow-y: auto;
	transition: left 400ms;
	z-index: 1;
}
#bo-nav-menu a {
	color: #EEE;
	display: block;
	font-size: 13px;
	padding: 8px 14px;
}
#bo-nav-menu a i {
	color: #ccc;
	margin-right: 8px;
	width: 16px;
	text-align: center;
}
#bo-nav-menu a:hover {
	background-color: black;
	color: #00B9EB;
	text-decoration: none;
}
#bo-nav-menu a:hover i {
	color: #00B9EB;
}
#bo-nav-menu a.active {
	background-color: #0073AA;
	color: white;
}
#bo-nav-menu a.active i {
	color: white;
}
.bo-main {
	display: block;
}
.bo-login {
	max-width: 360px;
	margin: 80px auto;
	padding: 32px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.bo-login h1 {
	margin: 0;
	font-size: 20px;
	text-align: center;
}
.bo-login-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.bo-btn-link {
	background: transparent;
	border: none;
	color: #ce8c82;
	cursor: pointer;
	margin-left: 8px;
	font-size: 16px;
}
.bo-section {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}
.bo-section h2 {
	margin: 0 0 16px;
	font-size: 18px;
}
.bo-section h3 {
	margin: 16px 0 8px;
	font-size: 14px;
	color: var(--muted);
}
.bo-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.bo-btn {
	display: inline-block;
	padding: 6px 12px;
	background: var(--head);
	border: 1px solid var(--line);
	border-radius: 4px;
	color: var(--fg);
	font-size: 13px;
}
.bo-btn:hover {
	text-decoration: none;
	background: #e4e4e7;
}
.bo-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.bo-table th,
.bo-table td
{
	padding: 6px 10px;
	border-bottom: 1px solid var(--line);
	text-align: left;
}
.bo-table tr.head th {
	background: var(--head);
	font-weight: 600;
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.bo-table td.right,
.bo-table th.right
{
	text-align: right;
}
.bo-table td.center,
.bo-table th.center
{
	text-align: center;
}
.bo-month-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.bo-month-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.bo-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
	padding: 8px 12px;
	border-radius: 4px;
}
.bo-notice {
	background: #eff6ff;
	color: #1e40af;
	border: 1px solid #bfdbfe;
	padding: 8px 12px;
	border-radius: 4px;
}
.bo-section-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 16px;
	gap: 12px;
}
.bo-section-head h2 {
	margin: 0;
}
.bo-btn.primary {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}
.bo-btn.primary:hover {
	background: #b8290e;
	color: #fff;
}
.bo-btn.danger {
	background: #fff;
	color: #b91c1c;
	border-color: #fecaca;
}
.bo-btn.danger:hover {
	background: #fef2f2;
	color: #b91c1c;
}
.bo-btn.active {
	background: var(--fg);
	color: #fff;
	border-color: var(--fg);
}
.bo-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}
.bo-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.bo-field > span {
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.bo-field input,
.bo-field select,
.bo-field textarea
{
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font: inherit;
	background: #fff;
}
.bo-field input:focus,
.bo-field select:focus,
.bo-field textarea:focus
{
	outline: 2px solid var(--accent);
	outline-offset: -1px;
}
.bo-field input[readonly] {
	background: var(--head);
	color: var(--muted);
}
.bo-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	margin: 8px 0;
}
.bo-checkbox input {
	width: 16px;
	height: 16px;
}
.bo-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 4px 12px;
}
.bo-form-actions {
	display: flex;
	gap: 8px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	flex-wrap: wrap;
}
.bo-search {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}
.bo-search input {
	flex: 1;
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font: inherit;
}
.bo-pager {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	font-size: 13px;
	color: var(--muted);
}
.bo-detail {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 8px 16px;
	margin: 0;
	font-size: 14px;
}
.bo-detail dt {
	color: var(--muted);
	font-weight: 600;
}
.bo-detail dd {
	margin: 0;
}
.bo-note {
	margin-top: 16px;
	padding: 12px;
	background: var(--head);
	border-radius: 4px;
	color: var(--muted);
	font-size: 13px;
}
.bo-monitor-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}
.bo-monitor-card {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--muted);
	border-radius: 6px;
	padding: 12px 14px;
}
.bo-monitor-card.bo-status-online {
	border-left-color: #10b981;
}
.bo-monitor-card.bo-status-recent {
	border-left-color: #f59e0b;
}
.bo-monitor-card.bo-status-offline {
	border-left-color: #ef4444;
}
.bo-monitor-card-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.bo-monitor-card-head strong {
	font-family: ui-monospace, Menlo, Consolas, monospace;
	font-size: 14px;
}
.bo-status-pill {
	font-size: 11px;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: 10px;
	background: var(--head);
	color: var(--muted);
	font-weight: 600;
	letter-spacing: 0.05em;
}
.bo-status-pill-online {
	background: #dcfce7;
	color: #065f46;
}
.bo-status-pill-recent {
	background: #fef3c7;
	color: #92400e;
}
.bo-status-pill-offline {
	background: #fee2e2;
	color: #991b1b;
}
.bo-monitor-card-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 12px;
	font-size: 12px;
}
.bo-monitor-card-body span {
	color: var(--muted);
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.bo-monitor-card-body strong {
	font-weight: 500;
	font-size: 13px;
}
.bo-monitor-clock {
	font-size: 12px;
	color: var(--muted);
	padding: 4px 10px;
	background: var(--head);
	border-radius: 12px;
}
.bo-table code {
	font-family: ui-monospace, Menlo, Consolas, monospace;
	font-size: 11px;
	color: var(--muted);
	word-break: break-all;
}
.bo-inline-form select {
	padding: 4px 8px;
	border: 1px solid var(--line);
	border-radius: 4px;
}
.bo-wisselkas-step {
	margin: 24px 0;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}
.bo-wisselkas-step h3 {
	margin: 0 0 12px;
	font-size: 15px;
	color: var(--fg);
}
.bo-wisselkas-grids {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}
.bo-wisselkas-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}
.bo-wisselkas-row span {
	width: 50px;
	text-align: right;
	color: var(--muted);
}
.bo-wisselkas-row input {
	flex: 1;
	padding: 4px 6px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font: inherit;
}
.bo-wisselkas-summary {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px;
	background: var(--head);
	border-radius: 6px;
	min-width: 200px;
}
.bo-wisselkas-summary span {
	font-size: 12px;
	color: var(--muted);
	display: block;
}
.bo-wisselkas-summary strong {
	font-size: 22px;
	display: block;
	font-family: ui-monospace, Menlo, Consolas, monospace;
}
.bo-uitgaven-table input {
	width: 100%;
	padding: 4px 6px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font: inherit;
}
.bo-uitgaven-table button {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: 4px;
	padding: 2px 8px;
	cursor: pointer;
}
