* {
	box-sizing: border-box;
	font-weight: 300;
}

html,
body {
	height: 100%;
	min-width: 768px;
	margin: 0;
}

:root {
	--app-nav-height: 78px;
}

body {
	font-family: var(--font-sans);
	font-feature-settings: var(--font-feature-settings);
	font-size: 14px;
	-webkit-font-smoothing: subpixel-antialiased;
	background:
		radial-gradient(circle at top left, rgba(249, 107, 238, 0.14), transparent 28%),
		radial-gradient(circle at top right, rgba(83, 58, 253, 0.16), transparent 24%),
		linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
	color: var(--color-text);
	overflow: hidden;
}

strong {
	font-weight: 500;
}

.splashscreen {
	background:
		radial-gradient(circle at 20% 20%, rgba(249, 107, 238, 0.22), transparent 28%),
		radial-gradient(circle at 80% 10%, rgba(83, 58, 253, 0.18), transparent 30%),
		linear-gradient(160deg, #061b31 0%, #1c1e54 56%, #2e2b8c 100%);
    height: 100vh;
}

.sc-container {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.splashscreen p {
	text-align: center;
	color: rgba(246, 249, 252, 0.82);
	font-size: 16px;
	margin: 0;
}

p {
	line-height: 1.5;
}

a {
	text-decoration: none;
}


.brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-heading);
	font-size: 17px;
	font-weight: var(--font-weight-regular);
	letter-spacing: -0.02em;
	line-height: 1;
}

.brand-word strong {
	font-weight: var(--font-weight-medium);
}

.brand-mark {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: linear-gradient(135deg, #533afd 0%, #2e2b8c 100%);
	box-shadow: 0 6px 14px -6px rgba(83, 58, 253, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
	flex-shrink: 0;
}

.brand-mark-lg {
	width: 36px;
	height: 36px;
	border-radius: 8px;
}

.brand-line {
	position: absolute;
	left: 6px;
	right: 6px;
	height: 2px;
	border-radius: 999px;
	background: #ffffff;
}

.brand-node {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ffffff;
	top: 50%;
	transform: translateY(-50%);
}

.brand-node-left {
	left: 5px;
}

.brand-node-right {
	right: 5px;
}

.splash-brand {
	font-size: 38px;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.splash-brand .brand-word {
	color: rgba(255, 255, 255, 0.96);
}

.app-nav {
	background: rgba(255, 255, 255, 0.84);
	border-bottom: 1px solid rgba(229, 237, 245, 0.84);
	box-shadow: 0 24px 45px -36px rgba(50, 50, 93, 0.24);
	height: var(--app-nav-height);
	top: 0;
	width: 100%;
	padding: 0 20px;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	position: relative;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.app-nav::after {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(249, 107, 238, 0), rgba(214, 217, 252, 0.3), rgba(83, 58, 253, 0.28), rgba(249, 107, 238, 0));
}

.app-nav-brand {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.nav-chart-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}


.nav-chart-caption {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: var(--font-weight-medium);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-text-muted);
}

.nav-chart-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 6px 10px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background: rgba(255, 255, 255, 0.88);
	color: var(--color-heading);
	font-size: 13px;
	font-weight: var(--font-weight-regular);
	box-shadow: var(--shadow-soft);
}

.nav-chart-pill span:last-child {
	max-width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nav-type-pill {
	display: inline-flex;
	align-items: center;
	padding: 2px 6px;
	border-radius: 3px;
	background: var(--color-brand);
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
}

.app-nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.nav-button,
.nav-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--color-border-strong);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-heading);
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	box-shadow: var(--shadow-soft);
	transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.nav-button:hover,
.nav-icon-button:hover {
	background: var(--color-brand-subtle);
	border-color: var(--color-brand-soft);
	color: var(--color-brand);
	transform: translateY(-1px);
}

.nav-button-primary {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: #ffffff;
}

.nav-button-primary:hover {
	background: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
	color: #ffffff;
}

.nav-icon-button {
	width: 38px;
	padding: 0;
}

.save-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 10px;
	min-height: 34px;
	border-radius: var(--radius-sm);
	background: rgba(21, 190, 83, 0.14);
	border: 1px solid rgba(21, 190, 83, 0.24);
	font-size: 12px;
	font-weight: var(--font-weight-regular);
	color: #108c3d;
	white-space: nowrap;
}

.save-pill::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-success);
}

.icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
	margin-right: 0;
	vertical-align: bottom;
}

.icon-flowchart {
	width: 17px;
}

main {
	display: flex;
	width: 100%;
	position: absolute;
	top: var(--app-nav-height);
	bottom: 0;
	padding: 18px;
	box-sizing: border-box;
}

.workspaceFileFrame {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
	border: 1px solid rgba(214, 225, 239, 0.96);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--shadow-elevated);
	overflow: hidden;
}

.workspaceFileBar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 52px;
	padding: 0 18px;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-surface-muted);
}

.workspaceWindowControls {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.windowDot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.windowDotDanger {
	background: var(--color-danger);
}

.windowDotWarning {
	background: #f4a340;
}

.windowDotSuccess {
	background: var(--color-success);
}

.workspaceFileMeta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-family: var(--font-mono);
	color: var(--color-text-muted);
}

.workspaceFileName {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.workspaceFileType {
	display: inline-flex;
	align-items: center;
	padding: 2px 6px;
	border-radius: var(--radius-sm);
	background: var(--color-brand);
	font-size: 10px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.08em;
	color: #ffffff;
	text-transform: uppercase;
}

.workspaceFileStatus {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-success);
}

.workspaceSplit {
	display: grid;
	grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1fr);
	min-height: 0;
	flex: 1 1 auto;
}

.workspacePanel {
	min-height: 0;
}

.workspaceHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 14px 18px 10px;
	position: relative;
	z-index: 1;
}

.workspaceCopy {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 360px;
}

.workspaceStatus {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: var(--radius-sm);
	background: rgba(83, 58, 253, 0.08);
	border: 1px solid rgba(83, 58, 253, 0.12);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-brand);
}

.workspaceEyebrow {
	margin: 0;
	font-size: 11px;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand);
}

.workspaceTitle {
	margin: 0;
	font-size: 20px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--color-heading);
}

.workspaceDescription {
	display: none;
}

.workspaceBody {
	flex: 1 1 auto;
	min-height: 0;
	padding: 0 22px 22px;
}

.quickInsertBar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 0 14px;
}

.quick-chip,
.preview-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.94);
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.quick-chip:hover,
.preview-chip:hover:not(:disabled),
.preview-chip.active {
	background: var(--color-brand-subtle);
	border-color: var(--color-brand-soft);
	color: var(--color-brand);
}

.preview-chip-disabled,
.preview-chip:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.previewToolbar {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.editor {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	border-right: 1px solid var(--color-border);
	background: #fafbfd;
	box-shadow: none;
	border-radius: 0;
}

.diagram {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 24px 24px, rgba(100, 116, 141, 0.13) 1.4px, transparent 1.6px) 0 0 / 28px 28px,
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
	box-shadow: none;
	border-radius: 0;
}

.chart-definiton {
	width: 33%;
}

.chart {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: calc(100vh - 250px);
	margin: 0;
	padding: 32px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: auto;
}

#graphDiv {
	display: block;
	margin: auto;
	width: 100%;
	min-height: 100%;
}

.diagram[data-preview-mode="actual"] #graphDiv {
	width: max-content;
	min-width: 0;
}

.CodeMirror {
	height: 100%;
	background: transparent;
	color: var(--color-heading);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 1.85;
	padding-top: 0;
	border-top: 1px solid rgba(229, 237, 245, 0.82);
}

.CodeMirror-gutters {
	background: rgba(238, 244, 251, 0.58);
	border-right: 1px solid var(--color-border);
	padding-top: 0;
}

.editorBody {
	overflow: hidden;
}

.previewBody {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.CodeMirror pre {
	line-height: 24px;
}

.CodeMirror-linenumber {
	line-height: 24px;
	color: rgba(100, 116, 141, 0.72);
}

.cm-keyword {
	color: var(--color-brand) !important;
}

.cm-endOfSubgraph,
.cm-subgraphDeclaration,
.cm-actor,
.cm-actor-0,
.cm-actor-1,
.cm-actor-2 {
	color: var(--color-danger);
}

.cm-message {
	color: #2874ad;
}

.cm-box {
	color: #2874ad;
}

.cm-arrow-end,
.cm-arrow-head,
.cm-arrow {
	color: var(--color-brand);
}

.cm-activation {
	color: var(--color-brand);
}

.syntaxError {
	background: rgba(234, 34, 97, 0.18);
}

.fragment {
	font-style: italic;
}

li.CodeMirror-hint {
	font-family: var(--font-mono);
	line-height: 21px;
}

ul.CodeMirror-hints {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-elevated);
	background: rgba(255, 255, 255, 0.96);
	overflow: hidden;
}

li.CodeMirror-hint-active {
	background: var(--color-brand-subtle);
	color: var(--color-heading);
}

/* 弹出框 表单 */
.blocker {
	z-index: 40;
	background: var(--color-overlay);
}

.modal {
	color: var(--color-text);
	max-width: 510px;
	max-height: 85vh;
	overflow-y: scroll;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-deep);
	padding: 28px;
}

.modal button {
	border-radius: var(--radius-sm);
}

.modal-headline {
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -0.03em;
	font-weight: var(--font-weight-light);
	color: var(--color-heading);
	margin: 0 0 20px 0;
}

.modal h2 {
	font-size: 18px;
	font-weight: var(--font-weight-light);
	letter-spacing: -0.02em;
	color: var(--color-heading);
	margin: 2em 0 0 0;
}

.modal pre {
	font-family: var(--font-mono);
	line-height: 1.5;
	margin: 0.5em 0;
	background: var(--color-surface-muted);
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
}

.buttons-group-right {
	text-align: right;
}

.buttons-group-right button{
	margin-left: 7px;
}

button.dangerous-button {
	background-color: var(--color-danger);
	border-color: var(--color-danger);
	color: var(--color-text-inverse);
}

button.dangerous-button:hover {
	background-color: var(--color-danger-hover);
	border-color: var(--color-danger-hover);
}

.modal-text {
	margin: 0;
	line-height: 1.5;
	color: var(--color-text-muted);
}

h2+.modal-text {
	margin-top: 4px;
}

.modal a.close-modal {
	height: 16px;
	width: 16px;
	top: 24px;
	right: 24px;
	background-image: url(../images/close.png);
	background-size: contain;
	opacity: 0.7;
}

.modal p a {
	color: var(--color-brand);
}

.pure-form label{
	width: auto !important;
}

.pure-form {
	margin-top: 20px;
}

.pure-form input[type="text"] {
	width: 100%;
	max-width: 280px;
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	box-shadow: inset 0 1px 2px rgba(6, 27, 49, 0.03);
	background: rgba(255, 255, 255, 0.96);
	color: var(--color-heading);
}

.pure-form input[type="text"]:focus {
	border-color: var(--color-brand);
	box-shadow: var(--focus-ring);
}

.pure-button {
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border-strong);
	background: rgba(255, 255, 255, 0.84);
	color: var(--color-heading);
	box-shadow: var(--shadow-soft);
	font-weight: var(--font-weight-regular);
}

.pure-button:hover {
	background: var(--color-surface-muted);
	border-color: var(--color-brand-soft);
}

.pure-form fieldset {
	padding: 0;
}

.pure-form-aligned .pure-controls {
	margin-left: 96px;
}

#rename-chart-modal .pure-controls {
	margin-left: 89px;
}

.pure-button-primary {
	background-color: var(--color-brand);
	border: solid 1px var(--color-brand);
	color: var(--color-text-inverse);
	box-shadow: var(--shadow-soft);
}

.pure-button-primary:hover {
	background-color: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
}

/* 弹出框 表格 */

#chartsList {
	width: 100%;
	border: 0px;
	margin-top: 20px;
}

.pure-table td {
	border-left: 0px;
}

.select-chart {
	cursor: pointer;
}

.delete-chart,
.rename-chart {
	visibility: hidden;
}

.delete-chart:hover,
.rename-chart:hover {
	text-decoration: underline;
}

.active-row .delete-chart,
.active-row .rename-chart {
	visibility: visible;
}

.delete-chart {
	color: var(--color-danger);
}

.rename-chart {
	color: #2874ad;
}

.current-chart,
.select-chart:hover {
	background-color: rgba(83, 58, 253, 0.06);
}

.select-chart p {
	color: white;
	font-size: 12px;
	text-align: center;
	width: 18px;
	margin: 0;
}

.select-chart td:first-child {
	padding-right: 0px;
}

.sequence-diagram-label {
	background-color: var(--color-brand) !important;
}

.flowchart-label {
	background-color: #2874ad !important;
}

.workspaceBackdrop {
	position: fixed;
	inset: var(--app-nav-height) 0 0 0;
	background: rgba(6, 27, 49, 0.32);
	backdrop-filter: blur(4px);
	z-index: 45;
}

.chartsDrawer {
	position: fixed;
	top: var(--app-nav-height);
	right: 18px;
	bottom: 18px;
	width: 360px;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	box-shadow: var(--shadow-deep);
	z-index: 50;
	overflow: hidden;
}

.drawerHeader {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 20px 16px;
	border-bottom: 1px solid var(--color-border);
}

.drawerEyebrow {
	margin: 0 0 8px;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand);
}

.drawerHeader h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--color-heading);
}

.drawerClose {
	width: 32px;
	height: 32px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.94);
	font-size: 20px;
	line-height: 1;
	color: var(--color-text-muted);
}

.drawerSearch {
	padding: 14px 20px 8px;
}

.drawerSearch input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-surface-muted);
	color: var(--color-heading);
}

.drawerMeta {
	padding: 0 20px 12px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-bottom: 1px solid var(--color-border);
}

.drawerList {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.drawerChart {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	transition: background-color var(--transition-base), border-color var(--transition-base);
}

.drawerChart:hover,
.drawerChart.current-chart {
	background: rgba(83, 58, 253, 0.06);
	border-color: rgba(83, 58, 253, 0.12);
}

.drawerChartHeader,
.drawerChartActions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.drawerChartName {
	font-size: 14px;
	font-weight: var(--font-weight-regular);
	color: var(--color-heading);
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.drawerChartMeta {
	font-size: 11px;
	color: var(--color-text-muted);
	font-feature-settings: "tnum" 1;
}

.drawerTypePill {
	display: inline-flex;
	align-items: center;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: var(--font-mono);
	font-size: 9px;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.drawerTypePill.sequence {
	background: rgba(83, 58, 253, 0.12);
	color: var(--color-brand);
}

.drawerTypePill.flowchart {
	background: rgba(234, 34, 97, 0.12);
	color: var(--color-danger);
}

.drawerAction {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 8px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.94);
	font-size: 11px;
	color: var(--color-text-muted);
	visibility: hidden;
}

.drawerAction:hover {
	border-color: var(--color-brand-soft);
	color: var(--color-brand);
	background: var(--color-brand-subtle);
}

.drawerDelete:hover {
	color: var(--color-danger);
	border-color: rgba(234, 34, 97, 0.18);
	background: rgba(234, 34, 97, 0.08);
}

.drawerChart:hover .drawerAction,
.drawerChart.active-row .drawerAction,
.drawerChart.current-chart .drawerAction {
	visibility: visible;
}

.drawerEmpty {
	margin: 10px;
	padding: 18px;
	border: 1px dashed var(--color-brand-soft);
	border-radius: 12px;
	font-size: 14px;
	color: var(--color-text-muted);
	text-align: center;
}

@media (max-width: 1100px) {
	.app-nav {
		height: auto;
		min-height: var(--app-nav-height);
		padding: 14px;
		align-items: flex-start;
		flex-direction: column;
	}

	.app-nav-brand,
	.app-nav-actions {
		width: 100%;
		flex-wrap: wrap;
	}

	.app-nav-actions {
		margin-left: 0;
		gap: 6px;
	}

	.nav-button {
		padding: 0 10px;
		font-size: 13px;
	}

	main {
		padding: 12px;
		top: 112px;
	}

	.workspaceSplit {
		grid-template-columns: minmax(340px, 0.95fr) minmax(380px, 1fr);
	}

	.workspaceDescription {
		max-width: 300px;
	}

	.chart {
		padding-left: 18px;
		padding-right: 18px;
	}

	.chartsDrawer {
		top: 112px;
		right: 12px;
		bottom: 12px;
	}

	.workspaceBackdrop {
		inset: 112px 0 0 0;
	}
}

.edgeLabel div,
.cluster text,
.node div {
	font-size: 16px;
	line-height: 1.5;
	font-family: var(--font-sans);
	font-feature-settings: var(--font-feature-settings);
}