body .slbb-board {
	--slbb-red: #ef1f16;
	--slbb-blue: #2167ff;
	--slbb-ink: #102a45;
	--slbb-muted: #3b536b;
	--slbb-border: #e7eef6;
	background: #ffffff !important;
	border: 1px solid var(--slbb-border) !important;
	border-radius: 10px !important;
	box-shadow: 0 10px 26px rgba(15, 35, 60, 0.08) !important;
	color: var(--slbb-ink) !important;
	font-family: inherit !important;
	overflow: hidden !important;
	width: 100% !important;
}

body .slbb-header {
	border-bottom: 1px solid #edf3f9;
	padding: 22px 28px 12px;
}

body .slbb-header h2 {
	color: #0d2a48;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.08;
	margin: 0;
}

body .slbb-window {
	height: var(--slbb-height);
	overflow: hidden;
	position: relative;
}

body .slbb-window::before,
body .slbb-window::after {
	content: "";
	height: 34px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	z-index: 2;
}

body .slbb-window::before {
	background: linear-gradient(180deg, #ffffff 20%, rgba(255, 255, 255, 0));
	top: 0;
}

body .slbb-window::after {
	background: linear-gradient(0deg, #ffffff 20%, rgba(255, 255, 255, 0));
	bottom: 0;
}

body .slbb-track {
	animation: slbb-scroll-up var(--slbb-speed) linear infinite;
	list-style: none !important;
	margin: 0 !important;
	padding: 18px 28px !important;
	will-change: transform;
}

body .slbb-board:hover .slbb-track,
body .slbb-board:focus-within .slbb-track {
	animation-play-state: paused;
}

body .slbb-item {
	align-items: flex-start;
	display: grid;
	gap: 14px;
	grid-template-columns: 22px minmax(0, 1fr);
	margin: 0 0 30px;
}

body .slbb-item::marker {
	content: "";
}

body .slbb-link-icon {
	background: #445a70;
	border-radius: 999px;
	height: 7px;
	margin: 11px auto 0;
	width: 7px;
}

body .slbb-content {
	min-width: 0;
}

body .slbb-title-line {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	line-height: 1.35;
	margin-bottom: 4px;
}

body .slbb-title {
	color: var(--slbb-blue);
	font-family: inherit;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
}

body .slbb-title:hover,
body .slbb-title:focus {
	color: #1049ce;
	text-decoration: underline;
}

body .slbb-content p {
	color: var(--slbb-ink);
	display: block;
	font-size: 20px;
	line-height: 1.6;
	margin: 0;
}

body .slbb-new-badge-wrap {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	height: 22px;
	vertical-align: middle;
}

body .slbb-new-badge {
	display: inline-block;
	flex: 0 0 auto;
	height: 22px;
	object-fit: contain;
	vertical-align: middle;
	width: 48px;
}

body .slbb-new-fallback {
	align-items: center;
	animation: slbb-new-pulse 1.1s ease-in-out infinite;
	background: #ef1f16;
	border-radius: 999px;
	color: #ffffff;
	display: none;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	padding: 5px 8px;
	text-transform: uppercase;
}

body .slbb-footer {
	border-top: 1px solid var(--slbb-border);
	padding: 14px 28px 20px;
	text-align: left;
}

body .slbb-view-all {
	background: transparent;
	border-radius: 0;
	color: var(--slbb-blue);
	display: inline-flex;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
	padding: 0;
	text-decoration: none;
	transition: color 0.2s ease;
}

body .slbb-view-all:hover,
body .slbb-view-all:focus {
	background: transparent;
	color: #1049ce;
	text-decoration: underline;
	transform: none;
}

body .slbb-empty {
	color: #555555;
	font-size: 16px;
	padding: 28px 26px;
}

body .slbb-route-wrap {
	margin: 0 auto;
	max-width: 1120px;
	padding: 36px 18px;
}

body .slbb-manager,
body .slbb-public-list {
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	box-shadow: 0 4px 18px rgba(20, 28, 45, 0.08);
	color: #333333;
	padding: 24px;
}

body .slbb-manager-head {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 20px;
}

body .slbb-head-actions,
body .slbb-public-head {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
}

body .slbb-head-actions {
	justify-content: flex-end;
}

body .slbb-manager h2,
body .slbb-public-list h2 {
	color: #0d2a48;
	font-size: 28px;
	line-height: 1.2;
	margin: 0;
}

body .slbb-download-csv {
	background: #143c7d;
	border-radius: 6px;
	color: #ffffff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	padding: 10px 13px;
	text-decoration: none;
}

body .slbb-download-csv:hover,
body .slbb-download-csv:focus {
	background: #0d2a48;
	color: #ffffff;
	text-decoration: none;
}

body .slbb-form {
	border-bottom: 1px solid #eeeeee;
	display: grid;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 24px;
}

body .slbb-form label {
	display: grid;
	gap: 7px;
}

body .slbb-form span {
	color: #222222;
	font-size: 14px;
	font-weight: 700;
}

body .slbb-form input,
body .slbb-form select,
body .slbb-form textarea {
	border: 1px solid #d9dde5;
	border-radius: 6px;
	color: #222222;
	font: inherit;
	padding: 11px 12px;
	width: 100%;
}

body .slbb-form input:focus,
body .slbb-form select:focus,
body .slbb-form textarea:focus {
	border-color: #143c7d;
	box-shadow: 0 0 0 3px rgba(20, 60, 125, 0.12);
	outline: none;
}

body .slbb-form select {
	background: #ffffff;
	min-height: 48px;
}

body .slbb-form-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

body .slbb-button {
	background: #ef1f16;
	border: 0;
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	padding: 12px 16px;
}

body .slbb-button:hover,
body .slbb-button:focus {
	background: #c91710;
}

body .slbb-cancel {
	color: #143c7d;
	font-weight: 700;
	text-decoration: none;
}

body .slbb-message {
	border-radius: 6px;
	font-weight: 700;
	margin-bottom: 18px;
	padding: 12px 14px;
}

body .slbb-message-success {
	background: #e9f8ef;
	color: #136c35;
}

body .slbb-message-error {
	background: #fff0ef;
	color: #b61c14;
}

body .slbb-manage-list h3 {
	color: #222222;
	font-size: 20px;
	margin: 0 0 14px;
}

body .slbb-manage-item {
	align-items: start;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: 12px;
	padding: 16px;
}

body .slbb-manage-item h4,
body .slbb-public-notice h3 {
	color: #143c7d;
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 8px;
}

body .slbb-class-pill {
	background: #edf4ff;
	border: 1px solid #cfe0ff;
	border-radius: 999px;
	color: #143c7d;
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 8px;
	padding: 4px 9px;
	vertical-align: middle;
}

body .slbb-title-line .slbb-class-pill,
body .slbb-public-meta .slbb-class-pill {
	margin: 0;
}

body .slbb-manage-item p {
	color: #4b5563;
	margin: 0 0 8px;
}

body .slbb-manage-item time,
body .slbb-public-meta time {
	color: #6b7280;
	font-size: 13px;
}

body .slbb-row-actions {
	align-items: center;
	display: flex;
	gap: 10px;
}

body .slbb-row-actions a,
body .slbb-row-actions button {
	background: transparent;
	border: 0;
	color: #143c7d;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	padding: 0;
	text-decoration: none;
}

body .slbb-row-actions button {
	color: #c91710;
}

body .slbb-public-notice {
	border-bottom: 1px solid #eeeeee;
	padding: 18px 0;
}

body .slbb-public-notice:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

body .slbb-public-meta {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
}

body .slbb-public-content {
	color: #3f3f46;
	font-size: 17px;
	line-height: 1.6;
}

body .slbb-public-content p:last-child {
	margin-bottom: 0;
}

body .slbb-filter-note {
	color: #4b5563;
	font-size: 15px;
	margin: 8px 0 0;
}

body .slbb-empty-inline {
	color: #555555;
	margin: 0;
}

@keyframes slbb-scroll-up {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

@keyframes slbb-new-pulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.08);
	}
}

@media (prefers-reduced-motion: reduce) {
	body .slbb-track {
		animation: none;
	}
}

@media (max-width: 640px) {
	body .slbb-header {
		padding: 20px 18px 10px;
	}

	body .slbb-track {
		padding: 14px 18px;
	}

	body .slbb-item {
		gap: 10px;
		grid-template-columns: 18px minmax(0, 1fr);
		margin-bottom: 20px;
	}

	body .slbb-title,
	body .slbb-content p {
		font-size: 17px;
	}

	body .slbb-footer {
		padding: 12px 18px 18px;
		text-align: left;
	}

	body .slbb-manager,
	body .slbb-public-list {
		padding: 18px;
	}

	body .slbb-manager-head,
	body .slbb-manage-item {
		display: grid;
		grid-template-columns: 1fr;
	}

	body .slbb-head-actions,
	body .slbb-public-head {
		align-items: stretch;
		display: grid;
		grid-template-columns: 1fr;
	}

	body .slbb-download-csv {
		justify-content: center;
	}

	body .slbb-row-actions {
		justify-content: flex-start;
	}
}
