* {
	scrollbar-color: #105289 #f1f1f1;
	scrollbar-width: thin;
}
::-webkit-scrollbar {
	height: 12px;
	width: 12px;
}
::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb {
	background-color: #105289;
	border: 3px solid #f1f1f1;
	border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #0d426e;
}
body {
	background-color: #f8f9fa;
	color: #333333;
	font-family: sans-serif;
	margin: 0;
	min-width: 1380px;
}
.floating-widget {
	background-color: #ffffff;
	border: 1px solid #105289;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	margin: 0;
	opacity: 0;
	position: fixed;
	transform-origin: top right;
	transition: none;
	width: 300px;
	z-index: 1000;
}
.widget-header {
	align-items: center;
	background-color: #ffffff;
	border-bottom: 2px solid #105289;
	border-radius: 7px;
	cursor: move;
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	transition: background-color 0.2s;
	user-select: none;
}
.widget-header:hover {
	background-color: #f1f8ff;
}
.widget-header img {
	height: 24px;
	margin-right: 8px;
	pointer-events: none;
}
.widget-header .domain-name {
	color: #105289;
	font-size: 1.1em;
	font-weight: bold;
	pointer-events: none;
}
.toggle-indicator {
	color: #105289;
	font-size: 0.8em;
	transition: transform 0.3s;
}
.active-handle .toggle-indicator {
	transform: rotate(180deg);
}
.widget-content {
	background-color: #ffffff;
	border-radius: 0 0 7px 7px;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease-out,
		opacity 0.3s ease-in;
}
.widget-content.show {
	max-height: 60vh;
	opacity: 1;
	overflow-y: auto;
}
.kb-menu {
	list-style: none;
	margin: 0;
	padding: 10px 0;
}
.menu-category {
	color: #888;
	display: block;
	font-size: 0.75em;
	font-weight: bold;
	letter-spacing: 0.5px;
	margin: 10px 15px 4px 15px;
	text-transform: uppercase;
}
.kb-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.kb-menu a {
	border-left: 3px solid transparent;
	color: #333;
	display: block;
	font-size: 0.95em;
	padding: 4px 15px 4px 20px;
	text-decoration: none;
	transition:
		background 0.1s,
		border-color 0.1s;
}
.kb-menu a:hover {
	background-color: #f4f4f4;
	color: #105289;
}
.kb-menu a.active {
	background-color: #e7f3fe;
	border-left-color: #105289;
	color: #105289;
	font-weight: bold;
}
.kb-footer-note {
	background-color: #f9f9f9;
	border-radius: 0 0 7px 7px;
	border-top: 1px solid #eee;
	color: #aaa;
	font-size: 0.75em;
	padding: 8px;
	text-align: center;
}
.kb-viewport {
	display: flex;
	justify-content: center;
	padding: 40px;
}
.header {
	align-items: center;
	background-color: #105289;
	border-radius: 8px;
	color: #ffffff;
	display: flex;
	margin-bottom: 20px;
	padding: 10px 20px;
}
.header img {
	height: 40px;
	margin-right: 15px;
}
.header h1 {
	color: #ffffff;
	font-size: 1.8em;
	margin: 0;
}
.container {
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	flex-shrink: 0;
	padding: 40px;
	width: 1300px;
}
h1,
h2,
h3 {
	color: #105289;
	margin-bottom: 10px;
}
h2 {
	border-bottom: 1px solid #ccc;
	margin-top: 25px;
	padding-bottom: 5px;
}
h3 {
	margin-top: 20px;
}
h4 {
	color: #1a73e8;
	margin-top: 15px;
}
p {
	margin-bottom: 15px;
}
ul {
	list-style-type: disc;
	margin-bottom: 15px;
	margin-left: 20px;
}
ul ul {
	list-style-type: circle;
}
ul ul ul {
	list-style-type: square;
}
li {
	margin-bottom: 5px;
}
code {
	background-color: #f4f4f4;
	border-radius: 3px;
	font-family: monospace;
	padding: 2px 5px;
}
pre {
	background-color: #f4f4f4;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-top: 5px;
	overflow-x: auto;
	padding: 15px;
	white-space: pre;
}
strong {
	font-weight: bold;
}
.note {
	background-color: #e7f3fe;
	border-left: 6px solid #2196f3;
	margin: 15px 0;
	padding: 10px 15px;
}
.warning {
	background-color: #fff3cd;
	border-left: 6px solid #ffc107;
	margin: 15px 0;
	padding: 10px 15px;
}
.domain-name {
	font-weight: bold;
}
.email {
	color: #007bff;
	text-decoration: none;
}
.json-attr {
	font-family: monospace;
	font-weight: bold;
}
.collapsible-header {
	color: #1a73e8;
	cursor: pointer;
	display: inline-block;
	font-size: inherit;
	font-weight: bold;
	margin-bottom: 0;
	padding: 4px 0;
	transition: background-color 0.2s ease-in-out;
	user-select: none;
}
.collapsible-header:hover {
	text-decoration: underline;
}
.collapsible-header .toggle-icon {
	display: inline-block;
	font-weight: bold;
	margin-left: 8px;
	text-align: center;
	width: 1em;
}
.collapsible-content {
	margin-top: 5px;
}
.download-link {
	background-color: #105289;
	border-radius: 4px;
	color: white;
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 5px;
	padding: 8px 15px;
	text-decoration: none;
}
.download-link:hover {
	box-shadow: 0 0 3px #000000;
}
table {
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	margin: 20px 0;
	overflow: hidden;
	width: 100%;
}
th,
td {
	border-bottom: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
	padding: 12px 16px;
	text-align: left;
	vertical-align: middle;
	word-wrap: break-word;
}
th:last-child,
td:last-child {
	border-right: none;
}
tr:last-child td {
	border-bottom: none;
}
th {
	background-color: #105289;
	border-bottom: 2px solid #0d426e;
	color: #ffffff;
	font-size: 0.85em;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
tr:nth-child(even) {
	background-color: #f8f9fa;
}
tr:hover {
	background-color: #f1f8ff;
}
@media (max-width: 960px) {
	body {
		min-width: 860px;
		overflow-x: auto;
	}
	.container {
		margin: 10px;
		max-width: 100%;
		min-width: 800px;
		padding: 20px;
		width: auto;
	}
	.kb-viewport {
		display: block;
		max-width: 100%;
		padding: 0;
	}
}
