.codesandbox {
	--cs-background: #ffffff;
	--cs-surface: #ffffff;
	--cs-surface-soft: #f6f7fc;
	--cs-ink: #171b32;
	--cs-muted: #626981;
	--cs-border: #d7dbea;
	--cs-border-strong: #bfc5d9;
	--cs-primary: #394bd8;
	--cs-primary-dark: #24349e;
	--cs-primary-soft: #eef0ff;
	--cs-coral: #ff8d73;
	--cs-success: #16834b;
	--cs-danger: #b42318;
	--cs-danger-soft: #fff2f0;
	--cs-shadow: 0 14px 34px rgba(28, 35, 79, 0.08);
	--cs-radius: 12px;
	box-sizing: border-box;
	color: var(--cs-ink);
	font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.codesandbox *,
.codesandbox *::before,
.codesandbox *::after {
	box-sizing: inherit;
}

.codesandbox-page {
	margin: 18px 0 30px;
	padding: 28px;
	border: 1px solid #e0e3ee;
	border-radius: 14px;
	background: var(--cs-background);
	box-shadow: 0 4px 20px rgba(31, 38, 79, 0.04);
}

.codesandbox-page h1,
.codesandbox-page h2,
.codesandbox-page h3,
.codesandbox-page p {
	margin-top: 0;
}

.codesandbox-page h1,
.codesandbox-page h2,
.codesandbox-page h3 {
	font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.codesandbox-page h1 {
	margin-bottom: 7px;
	color: var(--cs-ink);
	font-size: clamp(27px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.codesandbox-page__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 24px;
}

.codesandbox-page__header > div > p {
	margin-bottom: 0;
	color: var(--cs-muted);
	font-size: 15px;
	line-height: 1.55;
}

.codesandbox-button {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 9px 17px;
	border: 1px solid transparent;
	border-radius: 8px;
	font: 600 14px/1.2 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
	text-decoration: none !important;
	transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.codesandbox-button .icon {
	font-size: 14px;
}

.codesandbox-button:hover {
	transform: translateY(-1px);
}

.codesandbox-button:focus-visible,
.codesandbox input:focus-visible,
.codesandbox textarea:focus-visible,
.codesandbox-code__tabs button:focus-visible,
.codesandbox-tabs__item:focus-visible,
.codesandbox-embed__link:focus-visible {
	outline: 3px solid rgba(57, 75, 216, 0.25);
	outline-offset: 2px;
}

.codesandbox-button--primary {
	border-color: var(--cs-primary);
	background: var(--cs-primary);
	color: #ffffff !important;
	box-shadow: 0 7px 16px rgba(57, 75, 216, 0.18);
}

.codesandbox-button--primary:hover {
	border-color: var(--cs-primary-dark);
	background: var(--cs-primary-dark);
}

.codesandbox-button--secondary {
	border-color: #7d88e7;
	background: #ffffff;
	color: var(--cs-primary) !important;
}

.codesandbox-button--secondary:hover {
	border-color: var(--cs-primary);
	background: var(--cs-primary-soft);
}

.codesandbox-button--quiet {
	border-color: var(--cs-border-strong);
	background: #ffffff;
	color: var(--cs-ink) !important;
}

.codesandbox-button--quiet:hover {
	border-color: #8c94aa;
	background: var(--cs-surface-soft);
}

.codesandbox-button--danger {
	border-color: #d78f88;
	background: #ffffff;
	color: var(--cs-danger) !important;
}

.codesandbox-button--danger:hover {
	border-color: var(--cs-danger);
	background: var(--cs-danger-soft);
}

.codesandbox-button--on-dark {
	border-color: rgba(255, 255, 255, 0.68);
	background: #ffffff;
	color: #1f2e99 !important;
	box-shadow: 0 9px 22px rgba(0, 0, 0, 0.25);
}

.codesandbox-tabs {
	display: flex;
	gap: 24px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--cs-border);
}

.codesandbox-tabs__item {
	position: relative;
	padding: 9px 5px 13px;
	color: var(--cs-muted) !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
}

.codesandbox-tabs__item::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: transparent;
	content: "";
}

.codesandbox-tabs__item.is-active {
	color: var(--cs-primary) !important;
}

.codesandbox-tabs__item.is-active::after {
	background: var(--cs-primary);
}

.codesandbox-featured,
.codesandbox-project__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(240px, 0.7fr);
	gap: 30px;
	align-items: center;
	padding: 0 0 28px;
	border-bottom: 1px solid var(--cs-border);
}

.codesandbox-preview {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--cs-border-strong);
	border-radius: var(--cs-radius);
	background: #11183f;
	box-shadow: var(--cs-shadow);
}

.codesandbox-preview--featured,
.codesandbox-preview--project {
	aspect-ratio: 16 / 9;
}

.codesandbox-preview__cover {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: grid;
	place-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at center, rgba(103, 82, 225, 0.28), transparent 27%),
		linear-gradient(145deg, #151c4c, #0c1235);
}

.codesandbox-preview__cover .codesandbox-button {
	position: relative;
	z-index: 2;
}

.codesandbox-preview__orbit {
	position: absolute;
	inset: 50%;
	width: 54%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
}

.codesandbox-preview__orbit::before,
.codesandbox-preview__orbit::after,
.codesandbox-preview__orbit span {
	position: absolute;
	inset: 50%;
	border: 1px dashed rgba(157, 168, 255, 0.44);
	border-radius: 50%;
	content: "";
	transform: translate(-50%, -50%);
}

.codesandbox-preview__orbit::before {
	width: 30%;
	height: 30%;
}

.codesandbox-preview__orbit::after {
	width: 70%;
	height: 70%;
}

.codesandbox-preview__orbit span:nth-child(1) {
	width: 100%;
	height: 100%;
}

.codesandbox-preview__orbit span:nth-child(2) {
	width: 48px;
	height: 48px;
	border: 0;
	background: #7963ec;
	box-shadow: 0 0 30px rgba(121, 99, 236, 0.8);
}

.codesandbox-preview__orbit span:nth-child(3) {
	inset: 13% auto auto 78%;
	width: 14px;
	height: 14px;
	border: 0;
	background: var(--cs-coral);
	box-shadow: 0 0 14px rgba(255, 141, 115, 0.8);
	transform: none;
}

.codesandbox-preview__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #ffffff;
}

.codesandbox-preview.is-running .codesandbox-preview__cover,
.codesandbox-embed.is-running .codesandbox-embed__cover {
	display: none;
}

.codesandbox-featured__details,
.codesandbox-project__details {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 12px;
}

.codesandbox-featured__details h2 {
	margin-bottom: 0;
	color: var(--cs-ink);
	font-size: clamp(24px, 2.4vw, 31px);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.codesandbox-byline {
	color: var(--cs-muted);
	font-size: 15px;
}

.codesandbox-featured__details .codesandbox-byline {
	margin-bottom: 7px;
}

.codesandbox-safety {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 5px 0 0;
	color: var(--cs-muted);
	font: 500 12px/1.4 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.codesandbox-safety .icon {
	color: var(--cs-success);
}

.codesandbox-recent {
	padding-top: 24px;
}

.codesandbox-recent > h2 {
	margin-bottom: 14px;
	color: var(--cs-ink);
	font-size: 20px;
	letter-spacing: -0.02em;
}

.codesandbox-recent__rail {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.codesandbox-recent__item {
	display: grid;
	min-width: 0;
	grid-template-columns: 100px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
	padding: 9px;
	border: 1px solid var(--cs-border);
	border-radius: 9px;
	background: #ffffff;
}

.codesandbox-recent__visual {
	position: relative;
	height: 72px;
	overflow: hidden;
	border-radius: 6px;
	background: #151b45;
}

.codesandbox-recent__visual span {
	position: absolute;
	border-radius: 50%;
	background: #8a72f1;
	box-shadow: 0 0 16px rgba(138, 114, 241, 0.55);
}

.codesandbox-recent__visual span:nth-child(1) {
	top: 15px;
	left: 19px;
	width: 12px;
	height: 12px;
}

.codesandbox-recent__visual span:nth-child(2) {
	right: 18px;
	bottom: 14px;
	width: 18px;
	height: 18px;
	background: var(--cs-coral);
}

.codesandbox-recent__visual span:nth-child(3) {
	top: 30px;
	left: 47px;
	width: 28px;
	height: 28px;
}

.codesandbox-recent__item h3 {
	overflow: hidden;
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.codesandbox-recent__item h3 a {
	color: var(--cs-ink);
	text-decoration: none;
}

.codesandbox-recent__item h3 a:hover {
	color: var(--cs-primary);
}

.codesandbox-recent__item p {
	margin-bottom: 0;
	color: var(--cs-muted);
	font-size: 12px;
}

.codesandbox-empty {
	display: flex;
	max-width: 600px;
	align-items: center;
	flex-direction: column;
	margin: 34px auto 18px;
	padding: 45px 24px;
	text-align: center;
}

.codesandbox-empty__mark,
.codesandbox-project-row__mark {
	position: relative;
	display: grid;
	border: 1px solid #b9c0ee;
	border-radius: 50%;
	background: var(--cs-primary-soft);
	place-items: center;
}

.codesandbox-empty__mark {
	width: 76px;
	height: 76px;
	margin-bottom: 20px;
}

.codesandbox-empty__mark::before,
.codesandbox-empty__mark::after,
.codesandbox-empty__mark span,
.codesandbox-project-row__mark span {
	position: absolute;
	border-radius: 50%;
	background: var(--cs-primary);
	content: "";
}

.codesandbox-empty__mark::before {
	width: 16px;
	height: 16px;
}

.codesandbox-empty__mark::after {
	width: 7px;
	height: 7px;
	transform: translate(25px, -13px);
	background: var(--cs-coral);
}

.codesandbox-empty__mark span {
	width: 54px;
	height: 54px;
	border: 1px dashed #8692e6;
	background: transparent;
}

.codesandbox-empty h2 {
	margin-bottom: 8px;
	color: var(--cs-ink);
	font-size: 22px;
}

.codesandbox-empty p {
	max-width: 490px;
	margin-bottom: 20px;
	color: var(--cs-muted);
	font-size: 14px;
	line-height: 1.6;
}

.codesandbox-project-list {
	border-top: 1px solid var(--cs-border);
}

.codesandbox-project-row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 16px 4px;
	border-bottom: 1px solid var(--cs-border);
}

.codesandbox-project-row__mark {
	width: 42px;
	height: 42px;
}

.codesandbox-project-row__mark span {
	width: 10px;
	height: 10px;
	box-shadow: 11px -7px 0 -2px var(--cs-coral);
}

.codesandbox-project-row__body h2 {
	margin-bottom: 4px;
	font-size: 17px;
}

.codesandbox-project-row__body h2 a {
	color: var(--cs-ink);
	text-decoration: none;
}

.codesandbox-project-row__body p {
	margin-bottom: 0;
	color: var(--cs-muted);
	font-size: 12px;
}

.codesandbox-project-row__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.codesandbox-editor__intro {
	margin-bottom: 16px;
}

.codesandbox-errors {
	margin: 0 0 16px;
	padding: 12px 16px;
	border: 1px solid #e5a4a4;
	border-radius: 8px;
	background: #fff4f4;
	color: #872424;
	font-size: 13px;
}

.codesandbox-errors ul {
	margin: 0;
	padding-left: 18px;
}

.codesandbox-editor__toolbar {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) auto;
	gap: 24px;
	align-items: end;
	margin-bottom: 18px;
}

.codesandbox-field label,
.codesandbox-copy > label {
	display: block;
	margin-bottom: 7px;
	color: var(--cs-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.codesandbox-field input,
.codesandbox-copy input {
	width: 100%;
	height: 46px;
	padding: 9px 12px;
	border: 1px solid var(--cs-border-strong);
	border-radius: 7px;
	background: #ffffff;
	color: var(--cs-ink);
	font: 500 17px/1.3 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.codesandbox-editor__actions {
	display: flex;
	gap: 9px;
}

.codesandbox-workspace {
	display: grid;
	overflow: hidden;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	border: 1px solid var(--cs-border-strong);
	border-radius: var(--cs-radius) var(--cs-radius) 0 0;
	background: #ffffff;
	box-shadow: var(--cs-shadow);
}

.codesandbox-code,
.codesandbox-live {
	min-width: 0;
}

.codesandbox-code {
	border-right: 1px solid var(--cs-border-strong);
}

.codesandbox-code__tabs {
	display: flex;
	height: 50px;
	align-items: stretch;
	border-bottom: 1px solid var(--cs-border);
	background: #ffffff;
}

.codesandbox-code__tabs button {
	position: relative;
	min-width: 88px;
	padding: 0 19px;
	border: 0;
	background: transparent;
	color: var(--cs-muted);
	font: 600 13px/1 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
	cursor: pointer;
}

.codesandbox-code__tabs button::after {
	position: absolute;
	right: 12px;
	bottom: -1px;
	left: 12px;
	height: 3px;
	border-radius: 2px 2px 0 0;
	background: transparent;
	content: "";
}

.codesandbox-code__tabs button.is-active {
	color: var(--cs-ink);
}

.codesandbox-code__tabs button.is-active::after {
	background: var(--cs-primary);
}

.codesandbox-code__panels,
.codesandbox-code__panels > div {
	height: 510px;
}

.codesandbox-code__editor {
	--cs-code-gutter-width: 52px;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: repeating-linear-gradient(to bottom, #ffffff 0, #ffffff 24px, #f7f8fb 25px);
}

.codesandbox-code__highlight,
.codesandbox-code textarea {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 18px 20px 18px calc(var(--cs-code-gutter-width) + 12px);
	border: 0;
	border-radius: 0;
	font: 500 13px/25px "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	tab-size: 2;
	white-space: pre;
}

.codesandbox-code__line-numbers {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: 0;
	width: var(--cs-code-gutter-width);
	overflow: hidden;
	border-right: 1px solid #eceef5;
	background: #ffffff;
	color: #929ab0;
	font: 400 12px/25px "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	pointer-events: none;
	text-align: right;
	user-select: none;
}

.codesandbox-code__line-numbers span {
	display: block;
	padding: 18px 9px 18px 4px;
	white-space: pre;
}

.codesandbox-code__highlight {
	z-index: 1;
	overflow: hidden;
	background: transparent;
	color: #26315f;
	pointer-events: none;
}

.codesandbox-code__highlight code {
	display: block;
	min-width: max-content;
	font: inherit;
	white-space: inherit;
}

.codesandbox-code textarea {
	z-index: 2;
	width: 100% !important;
	height: 100% !important;
	overflow: auto;
	resize: none;
	margin: 0 !important;
	padding: 18px 20px 18px calc(var(--cs-code-gutter-width) + 12px) !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	caret-color: #18224c;
	color: transparent !important;
	font: 500 13px/25px "SFMono-Regular", Consolas, "Liberation Mono", monospace !important;
	white-space: pre !important;
	-webkit-text-fill-color: transparent !important;
}

.codesandbox-code textarea::selection {
	background: rgba(78, 70, 229, 0.22);
	-webkit-text-fill-color: transparent;
}

.codesandbox-code__highlight .token.comment,
.codesandbox-code__highlight .token.prolog,
.codesandbox-code__highlight .token.doctype,
.codesandbox-code__highlight .token.cdata {
	color: #76809b;
}

.codesandbox-code__highlight .token.punctuation {
	color: #6d7489;
}

.codesandbox-code__highlight .token.tag,
.codesandbox-code__highlight .token.boolean,
.codesandbox-code__highlight .token.number,
.codesandbox-code__highlight .token.constant,
.codesandbox-code__highlight .token.symbol,
.codesandbox-code__highlight .token.deleted {
	color: #9b2c73;
}

.codesandbox-code__highlight .token.selector,
.codesandbox-code__highlight .token.attr-name,
.codesandbox-code__highlight .token.string,
.codesandbox-code__highlight .token.char,
.codesandbox-code__highlight .token.builtin,
.codesandbox-code__highlight .token.inserted {
	color: #417223;
}

.codesandbox-code__highlight .token.operator,
.codesandbox-code__highlight .token.entity,
.codesandbox-code__highlight .token.url,
.codesandbox-code__highlight .language-css .token.string {
	color: #96641d;
}

.codesandbox-code__highlight .token.atrule,
.codesandbox-code__highlight .token.attr-value,
.codesandbox-code__highlight .token.keyword {
	color: #245bb8;
}

.codesandbox-code__highlight .token.function,
.codesandbox-code__highlight .token.class-name {
	color: #c44755;
}

.codesandbox-code__highlight .token.regex,
.codesandbox-code__highlight .token.important,
.codesandbox-code__highlight .token.variable {
	color: #b65d00;
}

@media (forced-colors: active) {
	.codesandbox-code__line-numbers {
		border-color: GrayText;
		background: Canvas;
		color: GrayText;
	}

	.codesandbox-code__highlight {
		display: none;
	}

	.codesandbox-code textarea {
		background: Canvas !important;
		caret-color: CanvasText;
		color: CanvasText !important;
		-webkit-text-fill-color: CanvasText !important;
	}
}

.codesandbox-live {
	background: #11183f;
}

.codesandbox-live__header {
	display: flex;
	height: 50px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 14px;
	border-bottom: 1px solid var(--cs-border);
	background: #ffffff;
}

.codesandbox-live__header h2 {
	margin: 0;
	color: var(--cs-ink);
	font-size: 14px;
	font-weight: 600;
}

.codesandbox-live__header .codesandbox-safety {
	margin: 0;
}

.codesandbox-live__frame {
	display: block;
	width: 100%;
	height: 510px;
	border: 0;
	background: #11183f;
}

.codesandbox-editor__status {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 20px;
	align-items: center;
	padding: 14px 17px;
	border: 1px solid var(--cs-border-strong);
	border-top: 0;
	border-radius: 0 0 var(--cs-radius) var(--cs-radius);
	background: #ffffff;
}

.codesandbox-editor__status p {
	margin: 0;
	color: var(--cs-muted);
	font-size: 12px;
}

.codesandbox-editor__status > p:first-child,
.codesandbox-save-state {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.codesandbox-editor__status > p:first-child .icon {
	color: var(--cs-primary);
}

.codesandbox-save-state {
	color: var(--cs-success) !important;
}

.codesandbox-save-state.is-dirty {
	color: #a25722 !important;
}

.codesandbox-project__layout {
	align-items: stretch;
	border-bottom: 0;
	padding-bottom: 0;
}

.codesandbox-project__details {
	justify-content: center;
}

.codesandbox-copy {
	width: 100%;
	margin-top: 9px;
	padding-top: 18px;
	border-top: 1px solid var(--cs-border);
}

.codesandbox-copy__control {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.codesandbox-copy input {
	height: 44px;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 13px;
}

.codesandbox-project__notice {
	margin: 4px 0 0;
	color: var(--cs-muted);
	font-size: 12px;
	line-height: 1.55;
}

.codesandbox-embed {
	position: relative;
	width: min(100%, 760px);
	min-height: 320px;
	overflow: hidden;
	margin: 14px 0;
	border: 1px solid #c8cde0;
	border-radius: 10px;
	background: #11183f;
	box-shadow: 0 10px 25px rgba(28, 35, 79, 0.1);
}

.codesandbox-embed__cover {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 13px;
	padding: 22px;
	background:
		radial-gradient(circle at 50% 38%, rgba(105, 87, 232, 0.3), transparent 28%),
		linear-gradient(145deg, #171e4e, #0d1338);
	color: #ffffff;
	text-align: center;
}

.codesandbox-embed__label {
	color: #dce0ff;
	font: 600 14px/1.3 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.codesandbox-embed__link {
	color: #c9d0ff !important;
	font: 600 12px/1.3 "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

.codesandbox-embed__frame {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
	background: #ffffff;
}

@media (max-width: 960px) {
	.codesandbox-featured,
	.codesandbox-project__layout {
		grid-template-columns: 1fr;
	}

	.codesandbox-featured__details,
	.codesandbox-project__details {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: center;
	}

	.codesandbox-featured__details h2,
	.codesandbox-featured__details .codesandbox-byline,
	.codesandbox-project__details .codesandbox-copy,
	.codesandbox-project__details .codesandbox-safety,
	.codesandbox-project__details .codesandbox-project__notice {
		grid-column: 1 / -1;
	}

	.codesandbox-recent__rail {
		grid-template-columns: 1fr;
	}

	.codesandbox-editor__toolbar {
		grid-template-columns: 1fr;
	}

	.codesandbox-editor__actions {
		flex-wrap: wrap;
	}

	.codesandbox-workspace {
		grid-template-columns: 1fr;
	}

	.codesandbox-code {
		border-right: 0;
		border-bottom: 1px solid var(--cs-border-strong);
	}

	.codesandbox-editor__status {
		grid-template-columns: 1fr auto;
	}

	.codesandbox-editor__keyboard {
		display: none;
	}
}

@media (max-width: 600px) {
	.codesandbox-page {
		margin: 10px 0 20px;
		padding: 20px 14px;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}

	.codesandbox-page__header {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
	}

	.codesandbox-page__header > .codesandbox-button {
		align-self: flex-start;
	}

	.codesandbox-featured__details,
	.codesandbox-project__details {
		display: flex;
		align-items: stretch;
	}

	.codesandbox-project-row {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.codesandbox-project-row__actions {
		grid-column: 1 / -1;
		padding-left: 58px;
	}

	.codesandbox-project-row__actions .codesandbox-button {
		flex: 1;
	}

	.codesandbox-editor__actions .codesandbox-button {
		flex: 1 1 calc(50% - 8px);
	}

	.codesandbox-code__panels,
	.codesandbox-code__panels > div,
	.codesandbox-live__frame {
		height: 390px;
	}

	.codesandbox-live__header {
		align-items: flex-start;
		flex-direction: column;
		height: auto;
		padding: 11px 14px;
	}

	.codesandbox-editor__status {
		grid-template-columns: 1fr;
	}

	.codesandbox-save-state {
		justify-self: start;
	}

	.codesandbox-embed {
		min-height: 260px;
	}

	.codesandbox-embed__frame {
		height: 320px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.codesandbox-button {
		transition: none;
	}
}
