
.debugger-title {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--accent-color);
	margin-bottom: 20px;
	text-align: center;
}
.debugger-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}
.debugger-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 16px;
	border: 1px solid var(--dark-background-color);
	border-radius: 4px;
	background-color: var(--background-color);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.debugger-label {
	font-weight: bold;
	color: #555;
}
.debugger-value {
	color: var(--dark-background-color);
	word-break: break-word;
}
