.time_eacf88c {
	text-align: right;
	position: relative;
	overflow: hidden;
	font-size: 23px;
	color: var(--color-text-secondary);
	background-color: transparent;
	padding: 6px 12px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	touch-action: none;
}

.time_eacf88c:hover {
	background-color: var(--color-background-secondary-hover);
}

.ripple_b874328 {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	background-color: var(--color-background-secondary-ripple);
	pointer-events: none;
	transition: opacity 500ms linear;
	animation: ripple_b874328 300ms linear;
}

.ripple_b874328.clicked_b09bb79 {
	opacity: 0.3;
}

@keyframes ripple_b874328 {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.avatar_a6fa40f {
	border-radius: 50%;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-surface-secondary, #eceff1);
	color: var(--color-text-secondary, #455a64);
	font-size: 14px;
	font-weight: 500;
	user-select: none;
}

.avatarSmall_a1414b4 {
	width: 32px;
	height: 32px;
}

.avatarLarge_dc2c250 {
	width: 56px;
	height: 56px;
}

.avatarClickable_b26891e {
	cursor: pointer;
}

.avatarImage_de5d67e {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.placeholderIcon_aeb654a {
	width: 60%;
	height: 60%;
	border-radius: 50%;
	border: 2px solid currentColor;
	box-sizing: border-box;
}

.list_e13d440 {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	padding-top: 8px;
	padding-bottom: 8px;
}

.item_b4cf706 {
	display: flex;
	position: relative;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-default);
	background-color: transparent;
	padding: 8px 16px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	touch-action: none;
}

.item_b4cf706:hover {
	background-color: var(--color-background-secondary-hover);
}

.item_b4cf706[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

.ripple_e552a1a {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	background-color: var(--color-background-secondary-ripple);
	pointer-events: none;
	transition: opacity 500ms linear;
	animation: ripple_e552a1a 300ms linear;
}

.ripple_e552a1a.clicked_fb6918d {
	opacity: 0.3;
}

@keyframes ripple_e552a1a {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.item_b4cf706.selected_a09c942 {
	background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.button_e4c95d0 {
	display: inline-flex;
	position: relative;
	overflow: hidden;
	font-size: 1.5rem;
	border: none;
	border-radius: 50%;
	color: var(--color-text-secondary);
	background-color: transparent;
	white-space: nowrap;
	padding: 8px;
	cursor: pointer;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
	touch-action: none;
	vertical-align: middle;
	text-align: center;
	transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

/*
.button + .button {
	margin-left: 2px;
}
*/

.button_e4c95d0:hover {
	background-color: var(--color-background-secondary-hover);
	color: black;
}

.button_e4c95d0[disabled] {
	opacity: 0.5;
	cursor: default;
	color: inherit;
	background-color: transparent;
}

.button_e4c95d0 svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.ripple_a1e2030 {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	background-color: var(--color-background-secondary-ripple);
	pointer-events: none;
	transition: opacity 500ms linear;
	animation: ripple_a1e2030 300ms linear;
}

.ripple_a1e2030.clicked_cd56eb6 {
	opacity: 0.3;
}

@keyframes ripple_a1e2030 {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.iconbar_e4a1759 {
	display: flex;
	flex-direction: row;
}

.overlay_ef54a5d {
	background-color: var(--color-background-overlay);
	position: fixed;
	inset: 0;
	cursor: default;
	user-select: none;
	z-index: 2;
	display: grid;
	visibility: hidden;
	opacity: 0;
	transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.overlay_ef54a5d.open_e90631e {
	visibility: visible;
	opacity: 1;
}

.overlay_ef54a5d.closing_b12f7b8 {
	visibility: visible;
	opacity: 0;
}

.window_e6b33cd {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 300px;
	background-color: var(--color-background-surface);
	padding: 10px 10px;
	box-shadow:
		rgba(0, 0, 0, 0.2) 0px 8px 10px -5px,
		rgba(0, 0, 0, 0.14) 0px 16px 24px 2px,
		rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
	overflow-y: auto;
	transform: translateX(-300px);
	transition: transform 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.overlay_ef54a5d.open_e90631e .window_e6b33cd {
	transform: none;
}

.overlay_c475f2b {
	background-color: var(--color-background-overlay);
	position: fixed;
	inset: 0;
	cursor: default;
	user-select: none;
	z-index: 2;
	transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	padding-top: 15vh;
	animation: opening_fc06872 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.overlay_c475f2b.open_ae3cf55 {
	visibility: visible;
	opacity: 1;
}

.overlay_c475f2b.closing_c312617 {
	visibility: visible;
	opacity: 0;
}

.overlay_c475f2b.hidden_f37fe86 {
	visibility: hidden;
	opacity: 0;
}

.window_e281d24 {
	background-color: var(--color-background-surface);
	color: var(--color-text-default);
	border-radius: 4px;
	box-shadow:
		rgba(0, 0, 0, 0.2) 0px 11px 15px -7px,
		rgba(0, 0, 0, 0.14) 0px 24px 38px 3px,
		rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
	position: relative;
	margin: 0px auto;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	width: fit-content;
	max-height: calc(100% - 64px);
	max-width: 600px;
}

.title_adbf954 {
	padding: 16px 24px;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid var(--color-border-default);
	flex-shrink: 0;
}

.content_f0233ba {
	padding: 24px;
}

@keyframes opening_fc06872 {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.content_da64c49 {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 20px 24px;
	font-size: 1rem;
}

.actions_af363a2 {
	display: flex;
	align-items: center;
	padding: 8px;
	justify-content: flex-end;
	flex: 0 0 auto;
}

.button_d4a7e52 {
	display: inline-block;
	position: relative;
	overflow: hidden;
	min-width: 40px;
	font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02857em;
	text-transform: uppercase;
	border: none;
	border-radius: 4px;
	color: var(--color-primary);
	background-color: transparent;
	white-space: nowrap;
	padding: 6px 8px;
	cursor: pointer;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
	touch-action: none;
}

.button_d4a7e52 + .button_d4a7e52 {
	margin-left: 10px;
}

.button_d4a7e52:hover {
	background-color: var(--color-background-hover);
}

.button_d4a7e52[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

.ripple_a07268a {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	background-color: var(--color-primary);
	pointer-events: none;
	transition: opacity 500ms linear;
	animation: ripple_a07268a 300ms linear;
}

.ripple_a07268a.clicked_efdb009 {
	opacity: 0.3;
}

@keyframes ripple_a07268a {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.wrapper_c28269a {
	position: relative;
	border-bottom: 1px solid var(--color-border-default);
}

.container_f4c5f8f {
	display: flex;
}

.tab_a13c588 {
	position: relative;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 0.875rem;
	letter-spacing: 0.02857em;
	text-transform: uppercase;
	padding: 10px 16px;
	cursor: pointer;
	touch-action: none;
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
}

.tab_a13c588.selected_b4c71f6 {
	color: var(--color-primary);
}

.indicator_a18a727 {
	position: absolute;
	height: 2px;
	bottom: 0;
	background-color: var(--color-primary);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.ripple_ac248d7 {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	background-color: var(--color-background-secondary-ripple);
	pointer-events: none;
	transition: opacity 500ms linear;
	animation: ripple_ac248d7 300ms linear;
}

.ripple_ac248d7.clicked_edc6aba {
	opacity: 0.3;
}

.ripple_ac248d7.selected_b4c71f6 {
	background-color: var(--color-primary);
}

@keyframes ripple_ac248d7 {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.itemIcon_f0bab31 {
	margin-right: 8px;
}

.itemName_fdc58bd {
	flex-grow: 1;
}

.breadcrumb_a47f564 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 14px 8px 4px 8px;
	color: var(--color-primary);
	font-size: 0.9rem;
}

.breadcrumbItem_d29310c {
	cursor: pointer;
	color: var(--color-primary);
	text-decoration: none;
	margin: 2px 0px;
}

.breadcrumbItem_d29310c:hover {
	text-decoration: underline;
}

.breadcrumbSeparator_c511539 {
	margin: 0 2px;
	color: var(--color-primary);
}

.container_cd3b659 {
	position: relative; /* Для позиционирования оверлея спиннера */
	display: flex;
	flex-direction: column;
	height: 100%;
}

.spinnerOverlay_e0c9da8 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.error_ee7b6ae {
	color: red;
	padding: 10px;
	text-align: center;
}

.listActions_a8e9ee4 {
	display: flex;
	gap: 8px;
	padding: 8px 0;
}

.createFolderContainer_d9d025d {
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.deleteConfirmationContainer_e19ecb2 {
	padding: 20px;
	text-align: center;
}

.scrollableContent_b8807b4 {
	flex: 1;
	overflow-y: auto;
}

.overlay_e1e9bc4 {
	background-color: var(--color-background-overlay);
	position: fixed;
	inset: 0;
	cursor: default;
	user-select: none;
	z-index: 1;
	transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	padding-top: 10vh;
	animation: opening_d3747f2 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.overlay_e1e9bc4.open_b613652 {
	visibility: visible;
	opacity: 1;
}

.overlay_e1e9bc4.closing_c8d2377 {
	visibility: visible;
	opacity: 0;
}

.overlay_e1e9bc4.hidden_f8b322e {
	visibility: hidden;
	opacity: 0;
}

.window_c2a3e5a {
	background-color: var(--color-background-surface);
	color: rgba(0, 0, 0, 0.87);
	border-radius: 4px;
	padding: 10px 10px;
	box-shadow:
		rgba(0, 0, 0, 0.2) 0px 11px 15px -7px,
		rgba(0, 0, 0, 0.14) 0px 24px 38px 3px,
		rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
	position: relative;
	margin: 0px auto;
	overflow-y: auto;
	width: fit-content;
	min-width: 400px;
	/*max-width: calc(100% - 20vw);*/
	max-height: calc(100% - 20vh);
	display: flex;
	flex-direction: column;
	width: fit-content;
}

@keyframes opening_d3747f2 {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.container_b5797bd {
	position: relative;
	height: 40px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.23);
	border-radius: 4px;
	margin: 10px 2px 2px 2px;
	padding: 0 2px;
	background-color: var(--color-background-surface);
	font-size: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.container_b5797bd:hover {
	box-shadow: 0 0 0 1px black;
}

.container_b5797bd:focus-within {
	box-shadow: 0 0 0 2px var(--color-border-focus);
}

.container_b5797bd.error_a1d3275 .label_c917b95::after {
	content: ' *';
	color: red;
}

.label_c917b95 {
	pointer-events: none;
	color: rgba(0, 0, 0, 0.3);
	padding: 0 7px;
	position: absolute;
	left: 7px;
	top: 0;
	max-width: calc(100% - 7px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 1;
	background-color: var(--color-background-surface);
	transform-origin: top left;
	transform: translate(0, 10px) scale(1);
	transition:
		color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
		transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
		max-width 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.input_c8d5a5e:not(:placeholder-shown) + .label_c917b95 {
	transform: translate(2px, -7px) scale(0.75);
}

.container_b5797bd:focus-within .label_c917b95 {
	color: var(--color-border-focus);
	transform: translate(2px, -7px) scale(0.75);
}

.input_c8d5a5e {
	display: block;
	left: 0;
	top: 0;
	width: calc(100% - 60px);
	height: 100%;
	font-size: inherit;
	font-family: inherit;
	margin-left: 12px;
	background-color: transparent;
	text-overflow: ellipsis;
}

.input_c8d5a5e:focus-visible {
	outline-style: none;
}

.spinner_c1f43aa {
	width: 24px;
	height: 24px;
	animation: 1.4s linear 0s infinite normal none running spin_b711901;
}

@keyframes spin_b711901 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.circle_e6a8e77 {
	stroke: currentColor;
	stroke-dasharray: 80px, 200px;
	stroke-dashoffset: 0;
	animation: 1.4s ease-in-out 0s infinite normal none running dash_b026381;
}

@keyframes dash_b026381 {
	0% {
		stroke-dasharray: 1px, 200px;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 100px, 200px;
		stroke-dashoffset: -15px;
	}
	100% {
		stroke-dasharray: 100px, 200px;
		stroke-dashoffset: -125px;
	}
}

.container_e592822 {
	position: relative; /* Для позиционирования оверлея спиннера */
	display: flex;
	flex-direction: column;
	height: calc(100% - 38px);
}

.spinnerOverlay_b0610d9 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.error_fcb0547 {
	color: red;
	padding: 10px;
	text-align: center;
}

.container_bbda75c {
	position: relative; /* Needed to contain the absolutely positioned spinner overlay */
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 380px;
	min-height: 150px;
	width: 50vw;
	height: 80vh; /*calc(80vh - 100px);*/
	padding: 10px;
}

.driveContentExplorerWrapper_f1c0740 {
	flex: 1;
	height: 30vh;
}

.actions_f851c22 {
	padding-top: 10px;
	text-align: right;
}

.container_d86d8b9 {
	position: relative; /* Needed to contain the absolutely positioned spinner overlay */
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 380px;
	min-height: 150px;
	width: 50vw;
	height: 80vh; /*calc(80vh - 100px);*/
	padding: 10px;
}

.driveContentExplorerWrapper_e27e58c {
	flex: 1;
	height: 30vh;
}

.actions_d050742 {
	padding-top: 10px;
	text-align: right;
}

.dialogTitle_a09343d {
	margin-bottom: 20px;
	font-size: 1.2em;
	font-weight: bold;
}

.fileNameInput_cc6b935 {
	margin-top: 15px;
	width: 100%;
}

.button_bdb6c0f {
	display: inline-block;
	position: relative;
	overflow: hidden;
	min-width: 64px;
	font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02857em;
	text-transform: uppercase;
	border: 1px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
	border-radius: 4px;
	color: var(--color-primary);
	background-color: transparent;
	white-space: nowrap;
	padding: 8px 15px;
	cursor: pointer;
	outline: 0;
	-webkit-tap-highlight-color: transparent;
	touch-action: none;
}

.button_bdb6c0f + .button_bdb6c0f {
	margin-left: 10px;
}

.button_bdb6c0f:hover {
	background-color: var(--color-background-hover);
	border: 1px solid var(--color-primary);
}

.button_bdb6c0f[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

.ripple_bd2ce0b {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	background-color: var(--color-primary);
	pointer-events: none;
	transition: opacity 500ms linear;
	animation: ripple_bd2ce0b 300ms linear;
}

.ripple_bd2ce0b.clicked_a69018e {
	opacity: 0.3;
}

@keyframes ripple_bd2ce0b {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.content_f375f02 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.warning_f0d8f28 {
	background: #fff3cd;
	border-left: 4px solid #ffc107;
	padding: 8px 12px;
	margin: 0;
}

.versionComparison_c242064 {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.versionComparison_c242064 th,
.versionComparison_c242064 td {
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

.versionComparison_c242064 th {
	background: #f5f5f5;
	font-weight: 600;
}

.versionComparison_c242064 tr.highlight_a6a9e25 {
	background: #fff3cd;
}

.badge_aea7520 {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}

.badgeWarning_ba9f80c {
	background: #ff9800;
	color: white;
}

.ok_fb034a1 {
	color: #4caf50;
}

.actions_ef67507 {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	padding-top: 16px;
}

.primaryButton_b1ae12c {
	background: #1976d2;
	color: white;
}

.primaryButton_b1ae12c:hover {
	background: #1565c0;
}

.secondaryButton_f3d6971 {
	background: #ff9800;
	color: white;
}

.secondaryButton_f3d6971:hover {
	background: #f57c00;
}

/* Кнопка открытия поиска (свёрнутое состояние) */
.searchToggle_f648d40 {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 4px 8px;
	font-size: 16px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.searchToggle_f648d40:hover {
	opacity: 1;
}

/* Контейнер поиска (развёрнутое состояние) */
.searchContainer_c1949a4 {
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--color-bg-secondary, #2a2a2a);
	border-radius: 4px;
	padding: 2px 6px;
}

/* Поле ввода поиска */
.searchInput_ad76515 {
	background: transparent;
	border: none;
	color: var(--color-text-primary, #fff);
	font-size: 14px;
	padding: 4px 8px;
	width: 150px;
	outline: none;
}

.searchInput_ad76515::placeholder {
	color: var(--color-text-secondary, #888);
}

/* Счётчик результатов */
.resultCount_dc70a9d {
	color: var(--color-text-secondary, #888);
	font-size: 12px;
	padding: 0 4px;
	min-width: 40px;
	text-align: center;
}

/* Кнопки навигации */
.navButton_b8293f8 {
	background: transparent;
	border: none;
	color: var(--color-text-primary, #fff);
	cursor: pointer;
	padding: 2px 6px;
	font-size: 12px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.navButton_b8293f8:hover:not(:disabled) {
	opacity: 1;
}

.navButton_b8293f8:disabled {
	opacity: 0.3;
	cursor: default;
}

/* Кнопка закрытия */
.closeButton_c37844c {
	background: transparent;
	border: none;
	color: var(--color-text-primary, #fff);
	cursor: pointer;
	padding: 2px 6px;
	font-size: 14px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.closeButton_c37844c:hover {
	opacity: 1;
}

.header_fc851ac {
	font-size: 22px;
	width: 100%;
	background-color: white;
	vertical-align: baseline;
	padding: 2px 2px;
	border-bottom: 1px solid lightgray;
	color: gray;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.caption_b8e985a {
	white-space: nowrap;
}

.documentName_ecd576c {
	max-width: 38vw;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	color: #4a4a4a;
}

.rightSection_a296253 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.userMenu_d6b738e {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.userMenuDropdown_bf67ccb {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 4px;
	min-width: 120px;
	background-color: #ffffff;
	border: 1px solid lightgray;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	z-index: 10;
}

.userMenuProfile_e421cf1 {
	display: flex;
	align-items: center;
	padding: 8px 10px;
	border-bottom: 1px solid #eeeeee;
	gap: 8px;
}

.userMenuProfileInfo_c9fab04 {
	display: flex;
	flex-direction: column;
}

.userMenuProfileName_b19a3ab {
	font-size: 14px;
	font-weight: 500;
	color: #212121;
}

.userMenuProfileEmail_c2c7826 {
	font-size: 12px;
	color: #616161;
}

/*
@media (max-width: 440px) { 
	.caption {
    order: 3;
	}
}
*/

.container_e60ceea {
	position: relative;
	height: 40px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.23);
	border-radius: 4px;
	margin: 10px 2px 2px 2px;
	padding: 10px;
	background-color: var(--color-background-surface);
	font-size: 1rem;
}

.container_e60ceea:hover {
	box-shadow: 0 0 0 1px black;
}

.container_e60ceea:focus-within {
	box-shadow: 0 0 0 2px var(--color-border-focus);
}

.container_e60ceea:focus-within .label_b6382ec {
	color: var(--color-border-focus);
	transform: translate(9px, -7px) scale(0.75);
}

.container_e60ceea.error_b84a1dc .label_b6382ec::after {
	content: ' *';
	color: red;
}

.label_b6382ec {
	pointer-events: none;
	color: var(--color-text-disabled);
	padding: 0 7px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-color: var(--color-background-surface);
	transform-origin: top left;
	transform: translate(7px, 8px) scale(1);
	transition:
		color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
		transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
		max-width 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.select_a23d1f0:not(:placeholder-shown) + .label_b6382ec {
	transform: translate(9px, -7px) scale(0.75);
}

.select_a23d1f0 {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	font-size: inherit;
	font-family: inherit;
	padding: 8px 10px;
	background-color: transparent;
}

.select_a23d1f0:focus-visible {
	outline-style: none;
}

.container_adc00b7 {
	position: relative;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.23);
	border-radius: 4px;
	margin: 10px 2px 2px 2px;
	padding: 10px 14px;
	background-color: var(--color-background-surface);
	font-size: 1rem;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.container_adc00b7::after {
	content: attr(data-replicated-value) ' ';
	white-space: pre-wrap;
	visibility: hidden;
	pointer-events: none;
}

.container_adc00b7:hover {
	box-shadow: 0 0 0 1px black;
}

.container_adc00b7:focus-within {
	box-shadow: 0 0 0 2px var(--color-border-focus);
}

.container_adc00b7.error_b14b2e9 .label_ef33c39::after {
	content: ' *';
	color: red;
}

.label_ef33c39 {
	pointer-events: none;
	color: rgba(0, 0, 0, 0.3);
	padding: 0 7px;
	position: absolute;
	left: 7px;
	top: 0;
	max-width: calc(100% - 7px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 1;
	background-color: var(--color-background-surface);
	transform-origin: top left;
	transform: translate(0, 10px) scale(1);
	transition:
		color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
		transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
		max-width 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.input_c3016ed:not(:placeholder-shown) + .label_ef33c39 {
	transform: translate(2px, -7px) scale(0.75);
}

.container_adc00b7:focus-within .label_ef33c39 {
	color: var(--color-border-focus);
	transform: translate(2px, -7px) scale(0.75);
}

.input_c3016ed {
	resize: none;
	overflow: hidden;
}

.container_adc00b7::after,
.input_c3016ed {
	grid-area: 1 / 1 / 2 / 2;
	padding: 0;
	background-color: transparent;
	font-size: inherit;
	font-family: inherit;
	overflow: hidden;
	/*overflow-y: auto;*/
	/*max-height: 133px;*/
	word-wrap: break-word;
}

.input_c3016ed:focus-visible {
	outline-style: none;
}

.title_b071411 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px 24px;
}

.title_b071411 span {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 2.66;
	letter-spacing: 0.08333em;
	text-transform: uppercase;
	color: var(--color-text-secondary);
}

.title_b071411 h4 {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 2.125rem;
	line-height: 1.235;
	letter-spacing: 0.00735em;
	text-align: center;
}

.header_d029db2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 24px;
	padding-right: 12px;
}

.label_cded99e {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 0.00938em;
}

.buttons_d015bd8 {
	display: flex;
	justify-content: space-between;
}

.weekdays_f9a6b11 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 1.66;
	letter-spacing: 0.03333em;
	padding: 8px 20px 0px 20px;
}

.weekday_baf6df9 {
	display: flex;
	width: 36px;
	height: 40px;
	margin: 0 2px;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: var(--color-text-secondary);
}

.day_c25a32d {
	will-change: background-color;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
	outline: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: transparent;
	transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	color: rgba(0, 0, 0, 0.87);
	margin: 0 2px;
	touch-action: none;
}

.day_c25a32d:focus {
	background-color: rgba(25, 118, 210, 0.12);
}

.day_c25a32d:focus.selected_a2f885d {
	background-color: rgb(21, 101, 192);
}

.day_c25a32d.selected_a2f885d,
.day_c25a32d.selected_a2f885d:hover {
	color: #fff;
	background-color: rgb(25, 118, 210);
	font-weight: 500;
}

.day_c25a32d:hover {
	background-color: rgba(25, 118, 210, 0.06);
}

.today_ea5a6b6 {
	border: 1px solid rgba(0, 0, 0, 0.6);
}

.ripple_eac860f {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.3);
	pointer-events: none;
	transition: opacity 300ms linear;
	animation: ripple_eac860f 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ripple_eac860f.clicked_c13ad26 {
	opacity: 0.3;
	background-color: currentColor;
}

@keyframes ripple_eac860f {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.calendar_da9895b {
	padding: 0px 20px 24px 20px;
	height: 254px;
}

.week_afa5eb4 {
	margin: 2px 0;
	display: flex;
	justify-content: flex-start;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.66;
	letter-spacing: 0.03333em;
}

.placeholder_ae20735 {
	width: 36px;
	height: 36px;
	padding: 0;
	background-color: transparent;
	margin: 0 2px;
	pointer-events: none;
}

.buttonGroup_e3d372f {
	padding-bottom: 10px;
}

.form_bb9b092 {
	text-align: left;
	overflow: auto;
	min-width: 380px;
	min-height: 150px;
	width: 50vw;
	max-height: calc(80vh - 100px);
}

.grid_d42b131 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
}

.footer_ef70fdc {
	padding-top: 10px;
	text-align: right;
}

.day_dc48eca,
.before_actual_date_d929ed7,
.between_firstplanned_and_actual_edf61bd {
	display: inline-block;
	width: calc(100% / 7);
	height: 100%;
	border-left: 1px solid lightgray;
	vertical-align: top;
	background-color: rgb(245, 245, 245);
}
.before_actual_date_d929ed7 {
	background-color: rgb(240, 240, 240);
}
.between_firstplanned_and_actual_edf61bd {
	background-color: rgb(255, 215, 215);
}
.header_e9d7f8a,
.today_dc07da1 {
	background-color: rgb(233, 233, 233);
	color: gray;
	padding: 0.1em 0.4em;
	height: 1.6em;
	font-size: 1.2em;
	line-height: 1.6em;
	position: relative;
}
.today_dc07da1 {
	background-color: hotpink;
	color: white;
}
.balance_beae656 {
	font-size: 0.9em;
	margin: 0.1em;
	height: 1.2em;
	overflow: hidden;
	text-align: justify;
	text-align-last: justify;
}
.input_e44c4a0 {
	width: 100%;
	overflow: hidden;
	outline-width: 0;
	white-space: nowrap;
	padding: 0.2em;
	height: 1.4em;
}
.weather_a507e03 {
	font-size: 0.8em;
	position: absolute;
	right: 0px;
	top: 0px;
}

.item_f1c9141,
.completed_ea224e7,
.repeatable_aaf2fdd,
.selected_c399760 {
	position: relative;
	width: 100%;
	height: 1.5em;
	overflow: hidden;
	margin: 0 0 0 -1px;
	padding: 0.2em 0.3em;
	background-image: linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
	/*box-shadow: 0 0 0 1px gray;*/

	cursor: pointer;
	text-align: justify;
	text-align-last: justify;
}
.placeholder_c26f049 {
	height: 1.5em;
	margin: 0 0 0 -1px;
}
.completed_ea224e7 {
	background-image:
		linear-gradient(to bottom right, rgba(255, 255, 255, 0.4) 0 100%),
		linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
	color: gray;
}
.repeatable_aaf2fdd {
	background-image:
		repeating-linear-gradient(45deg, transparent 0 0.33033em, rgb(255, 255, 255, 0.6) 0.43033em, transparent 0.53033em),
		linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
}
.name_ceccda0 {
	display: inline-block;
	text-align: left;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}
.time_e598119 {
	display: inline-block;
	vertical-align: top;
}
.completed_ea224e7 .name_ceccda0,
.completed_ea224e7 .time_e598119 {
	text-decoration: line-through;
	color: gray;
}

/* Подсвеченное событие (результат поиска) */
.highlighted_b147091 {
	outline: 3px solid #ff9800;
	outline-offset: -1px;
	box-shadow: 0 0 8px 2px rgba(255, 152, 0, 0.6);
	z-index: 10;
	animation: pulse_d2d8397 1s ease-in-out infinite;
}

@keyframes pulse_d2d8397 {
	0%,
	100% {
		box-shadow: 0 0 8px 2px rgba(255, 152, 0, 0.6);
	}
	50% {
		box-shadow: 0 0 12px 4px rgba(255, 152, 0, 0.8);
	}
}

.wrapper_b1e50ba {
	font-size: 16px;
	width: 100%;
	height: 100%;
	overflow-y: hidden;
	overflow-x: auto;
	user-select: none;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: max-content 1fr;
}

@media (max-width: 1400px) {
	.wrapper_b1e50ba {
		font-size: 14px;
	}
}

@media (max-width: 800px) {
	.wrapper_b1e50ba {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.wrapper_b1e50ba {
		font-size: 11px;
	}
}

.dayOfWeekLabels_def1ca2 {
	background-color: white;
	width: 100%;
	height: 1.2em;
	text-transform: uppercase;
	color: darkgray;
	border-bottom: 1px solid lightgray;
}

.dayOfWeekLabels_def1ca2 div {
	display: inline-block;
	width: calc(100% / 7);
	padding-left: 0.4em;
}

.CalendarBody_f4605e2 {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	/*overflow-x: hidden;*/
}

.CalendarBody_f4605e2::-webkit-scrollbar {
	width: 0;
}

.CalendarWeek_bfd05d3 {
	border-bottom: 1px solid lightgrey;
	font-size: 0.9em;
	height: 150px;
	width: 100%;
	overflow: hidden;
}

.item_f206a5e,
.completed_de3b50f,
.repeatable_e7b3ce8,
.selected_a66fdcf {
	position: relative;
	width: 100%;
	height: 1.5em;
	overflow: hidden;
	margin: 0;
	padding: 0.2em 0.3em;
	background-image: linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
	cursor: pointer;
}
.completed_de3b50f {
	background-image:
		linear-gradient(to bottom right, rgba(255, 255, 255, 0.4) 0 100%),
		linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
	color: gray;
}
.repeatable_e7b3ce8 {
	background-image:
		repeating-linear-gradient(45deg, transparent 0 0.33033em, rgb(255, 255, 255, 0.6) 0.43033em, transparent 0.53033em),
		linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
}
.name_e5a02e0 {
	display: inline-block;
	text-align: left;
	width: 42%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}
.time_bf99fba,
.start_cd27f69,
.startplaceholder_b1a3aa3,
.end_d10f99d,
.credit_dbc9eb9,
.debit_f07ee99 {
	display: inline-block;
	vertical-align: top;
}
.time_bf99fba {
	width: 10%;
}
.start_cd27f69,
.startplaceholder_b1a3aa3,
.end_d10f99d {
	width: 12%;
}
.credit_dbc9eb9,
.debit_f07ee99 {
	text-align: center;
	width: 12%;
}
.completed_de3b50f .name_e5a02e0,
.completed_de3b50f .time_bf99fba {
	text-decoration: line-through;
	color: gray;
}

.day_d86d973 {
	/*display: inline-block;*/
	width: 100%;
	height: 100%;
	border-left: 1px solid lightgray;
	vertical-align: top;
	background-color: rgb(245, 245, 245);
}

.item_ab81871,
.completed_a200ad3,
.repeatable_d47a6db,
.selected_ec09b47 {
	position: relative;
	width: 100%;
	height: 1.5em;
	overflow: hidden;
	margin: 0;
	padding: 0.2em 0.3em;
	background-image: linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
	cursor: pointer;
}
.completed_a200ad3 {
	background-image:
		linear-gradient(to bottom right, rgba(255, 255, 255, 0.4) 0 100%),
		linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
	color: gray;
}
.repeatable_d47a6db {
	background-image:
		repeating-linear-gradient(45deg, transparent 0 0.33033em, rgb(255, 255, 255, 0.6) 0.43033em, transparent 0.53033em),
		linear-gradient(to top left, transparent 0 50%, rgb(0, 0, 0, 0.1) 100%);
}
.name_b66d137 {
	display: inline-block;
	text-align: left;
	width: 42%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}
.time_b3e19a7,
.start_cfe7ee3,
.startplaceholder_dcbe1fe,
.end_a15f11a,
.credit_e44e206,
.debit_f162ab8 {
	display: inline-block;
	vertical-align: top;
}
.time_b3e19a7 {
	width: 10%;
}
.start_cfe7ee3,
.startplaceholder_dcbe1fe,
.end_a15f11a {
	width: 12%;
}
.credit_e44e206,
.debit_f162ab8 {
	text-align: center;
	width: 12%;
}
.completed_a200ad3 .name_b66d137,
.completed_a200ad3 .time_b3e19a7 {
	text-decoration: line-through;
	color: gray;
}

.day_d1fdaac {
	/*display: inline-block;*/
	width: 100%;
	height: 100%;
	border-left: 1px solid lightgray;
	vertical-align: top;
	background-color: rgb(245, 245, 245);
}
.header_d908bb3,
.today_cd91238 {
	background-color: rgb(233, 233, 233);
	color: gray;
	padding: 0.1em 0.4em;
	height: 1.4em;
}
.today_cd91238 {
	background-color: hotpink;
	color: white;
}
.balance_c60c8f2 {
	font-size: 0.9em;
	margin: 0.1em;
	height: 1.2em;
	overflow: hidden;
	text-align: justify;
	text-align-last: justify;
}
.input_eb240d6 {
	outline-width: 0;
	white-space: nowrap;
	padding: 0.2em;
	height: 1.4em;
}

.documentTabs_b792a4f {
	display: flex;
	align-items: center;
	background: #f5f5f5;
	border-bottom: 1px solid #ddd;
	overflow-x: auto;
	flex-shrink: 0;
}

.documentTab_ab80c57 {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	cursor: pointer;
	border-right: 1px solid #ddd;
	user-select: none;
	min-width: 120px;
	max-width: 200px;
	transition: background-color 0.2s;
}

.documentTab_ab80c57:hover {
	background: #e8e8e8;
}

.documentTab_ab80c57.active_fab4496 {
	background: white;
	border-bottom: 2px solid #1976d2;
}

.documentTabName_e61706f {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
	color: #333;
}

.modifiedIndicator_e1cd679 {
	color: #f44336;
	font-weight: bold;
	margin-left: 4px;
}

.syncStatus_cd77d93 {
	font-size: 12px;
	flex-shrink: 0;
}

.syncStatus--offline_d28e27b {
	opacity: 0.7;
}

.syncStatus--syncing_a7859f9 {
	animation: spin_de7647b 1s linear infinite;
}

@keyframes spin_de7647b {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.syncStatus--needs-sync_cc3fc47 {
	color: #ff9800;
}

.syncStatus--update-available_b10edd9 {
	color: #2196f3;
}

.syncStatus--error_e122259 {
	color: #f44336;
}

.documentTabClose_bfac9b4 {
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 18px;
	opacity: 0.5;
	padding: 2px 4px;
	border-radius: 4px;
	color: #666;
	transition:
		opacity 0.2s,
		background-color 0.2s;
}

.documentTabClose_bfac9b4:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.1);
}

.documentTabNew_c6c2d33 {
	padding: 8px 12px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 20px;
	color: #666;
	transition:
		background-color 0.2s,
		color 0.2s;
	border-left: 1px solid #ddd;
}

.documentTabNew_c6c2d33:hover {
	background: #e8e8e8;
	color: #1976d2;
}

.emptyState_e2182a8 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 40px 20px;
	background: #fafafa;
}

.emptyStateContent_e138cef {
	text-align: center;
	max-width: 500px;
}

.emptyStateTitle_a41cfe4 {
	margin: 0 0 16px 0;
	font-size: 24px;
	font-weight: 500;
	color: #333;
}

.emptyStateDescription_c0f0220 {
	margin: 0 0 32px 0;
	font-size: 16px;
	color: #666;
	line-height: 1.5;
}

.emptyStateActions_d4a4020 {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.buttonPrimary_a5c36d6 {
	background: #1976d2;
	color: white;
}

.buttonPrimary_a5c36d6:hover {
	background: #1565c0;
}

:root {
	/* Brand Colors */
	--color-primary: rgb(25, 118, 210); /* Используется для кнопок, акцентов, основной синий */
	--color-primary-light: #42a5f5; /* Более светлый оттенок primary */
	--color-primary-dark: #0d47a1; /* Более темный оттенок primary */
	--color-secondary: #dc004e; /* Второстепенный акцентный цвет (например, красный) */
	--color-secondary-light: #ff4081;
	--color-secondary-dark: #9a0036;

	/* Text Colors */
	--color-text-default: rgba(0, 0, 0, 0.87); /* Основной текст (черный с прозрачностью) */
	--color-text-secondary: rgba(0, 0, 0, 0.6); /* Второстепенный текст */
	--color-text-disabled: rgba(0, 0, 0, 0.38); /* Неактивный текст */
	--color-text-on-primary: #ffffff; /* Текст на primary фоне */
	--color-text-on-secondary: #ffffff; /* Текст на secondary фоне */

	/* Background Colors */
	--color-background-page: #f5f5f5; /* Фон страницы (светло-серый) */
	--color-background-surface: #ffffff; /* Фон для карточек, модальных окон (белый) */
	--color-background-hover: rgba(25, 118, 210, 0.08); /* Фон при наведении */
	--color-background-overlay: rgba(0, 0, 0, 0.5); /* Фон для оверлеев (модальных окон) */

	--color-background-secondary-hover: rgba(0, 0, 0, 0.05); /* Фон при наведении второстепенный */
	--color-background-secondary-ripple: rgba(0, 0, 0, 0.3); /* Фон ряби второстепенный */

	/* Border Colors */
	--color-border-default: rgba(0, 0, 0, 0.12); /* Цвет границ по умолчанию */
	--color-border-focus: var(--color-primary); /* Цвет границ в фокусе */

	/* State Colors */
	--color-success: #4caf50; /* Зеленый */
	--color-warning: #ffc107; /* Оранжевый */
	--color-error: #f44336; /* Красный */
	--color-info: #2196f3; /* Синий */
}

/* Пример для темной темы */
@media (prefers-color-scheme: dark) {
	:root {
		/* Brand Colors (Dark Theme) */
		--color-primary: #90caf9;
		--color-primary-light: #e3f2fd;
		--color-primary-dark: #42a5f5;
		--color-secondary: #f48fb1;
		--color-secondary-light: #ffc1e3;
		--color-secondary-dark: #bf5f82;

		/* Text Colors (Dark Theme) */
		--color-text-default: rgba(255, 255, 255, 0.87);
		--color-text-secondary: rgba(255, 255, 255, 0.6);
		--color-text-disabled: rgba(255, 255, 255, 0.38);
		--color-text-on-primary: #000000; /* В темной теме текст на primary фоне может быть черным */
		--color-text-on-secondary: #000000;

		/* Background Colors (Dark Theme) */
		--color-background-page: #121212; /* Очень темный серый */
		--color-background-surface: #1e1e1e; /* Чуть светлее, чем page */
		--color-background-hover: rgba(255, 255, 255, 0.08);
		--color-background-overlay: rgba(0, 0, 0, 0.7);

		/* Border Colors (Dark Theme) */
		--color-border-default: rgba(255, 255, 255, 0.12);
		--color-border-focus: var(--color-primary);

		/* State Colors (Dark Theme) - могут быть такими же или адаптированы */
		--color-success: #81c784;
		--color-warning: #ffeb3b;
		--color-error: #e57373;
		--color-info: #64b5f6;
	}
}

#root {
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	display: grid;
	user-select: none;
	grid-template-columns: 1fr;
	grid-template-rows: max-content max-content 1fr;
}

/* Вкладки документов */
#root > div[data-testid='document-tabs-wrapper'] {
	grid-row: 2;
}

/* Основной контент */
#root > main {
	grid-row: 3;
	overflow: auto;
}

* {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

body {
	width: 100vw;
	height: 100vh;
	font-family: 'Roboto', sans-serif;
	overflow-y: hidden;
}

