/* ===================== 小组件(Widgets) ===================== */
/* 磁贴外壳:与文件夹同款网格占位(透明容器,内容块=玻璃卡片) */

.uptab-tile.uptab-widget {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 10px; /* 与普通磁贴图标块顶部对齐 */
	box-sizing: border-box;
	cursor: pointer;
}

/* 内容块:边缘=图标块×span+间距(宽高同用横向间距,保持正方形体系),墨蓝玻璃(与弹窗/菜单同体系) */
.uptab-widget__inner {
	width: calc(var(--uptab-icon-size, 56px) * var(--w, 1) + (var(--w, 1) - 1) * var(--uptab-col-gap, 18px));
	height: calc(var(--uptab-icon-size, 56px) * var(--h, 1) + (var(--h, 1) - 1) * var(--uptab-col-gap, 18px));
	border-radius: var(--uptab-icon-radius, 16px);
	background: var(--uptab-glass-bg, rgba(28, 38, 58, 0.72));
	border: 1px solid var(--uptab-glass-border, rgba(255, 255, 255, 0.14));
	backdrop-filter: var(--uptab-glass-blur, blur(20px) saturate(140%));
	-webkit-backdrop-filter: var(--uptab-glass-blur, blur(20px) saturate(140%));
	box-shadow: 0 2px 6px rgba(10, 18, 34, 0.28), 0 14px 34px rgba(10, 18, 34, 0.34);
	overflow: hidden;
	position: relative;
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	flex-shrink: 0; /* 防止 flex 容器压缩(外层 flex column + padding-top),保证 2×2 等尺寸为正方形 */
	transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.uptab-tile.uptab-widget:hover .uptab-widget__inner {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(10, 18, 34, 0.3), 0 20px 44px rgba(10, 18, 34, 0.4);
}

/* ---------- 热榜 ---------- */
.uptab-widget__hot {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
}

.uptab-widget__tabs {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 4px;
	padding: 8px 8px 4px;
	flex-shrink: 0;
	scrollbar-width: none;
}
.uptab-widget__tabs::-webkit-scrollbar {
	display: none;
}

.uptab-widget__tab {
	flex-shrink: 0;
	font-size: 12px;
	line-height: 1;
	padding: 6px 12px;
	border-radius: 999px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.6));
	background: transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	user-select: none;
}
.uptab-widget__tab:hover {
	background: var(--uptab-glass-hover, rgba(255, 255, 255, 0.12));
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
}
.uptab-widget__tab.is-active {
	background: var(--uptab-gold, #c9a227);
	color: #1f2329;
	font-weight: 600;
}

.uptab-widget__list {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 2px 6px 8px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
	/* 在热榜列表内滚动时,不连锁滚动外部页面,也不触发滚轮切页 */
	overscroll-behavior: contain;
}
.uptab-widget__list::-webkit-scrollbar {
	width: 4px;
}
.uptab-widget__list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.25);
	border-radius: 4px;
}

.uptab-widget__item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 6px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	cursor: pointer;
	transition: background 0.12s ease;
}
.uptab-widget__item:hover {
	background: var(--uptab-glass-hover, rgba(255, 255, 255, 0.12));
}

.uptab-widget__rank {
	flex-shrink: 0;
	width: 18px;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.55));
	font-style: italic;
}
.uptab-widget__rank.is-hot {
	color: var(--uptab-gold, #c9a227);
}

.uptab-widget__node {
	flex-shrink: 0;
	font-size: 10px;
	line-height: 1;
	padding: 3px 6px;
	border-radius: 4px;
	background: rgba(201, 162, 39, 0.18);
	color: #e8c866;
	border: 1px solid rgba(201, 162, 39, 0.35);
}

.uptab-widget__title {
	flex: 1;
	min-width: 0;
	font-size: 12.5px;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.uptab-widget__empty {
	padding: 14px 10px;
	font-size: 12px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.6));
	text-align: center;
}

/* ---------- 笔记 ---------- */
.uptab-widget__note {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	gap: 0;
}

.uptab-widget__cover-svg {
	width: 100%;
	height: 100%;
	display: block;
	flex-shrink: 0;
}

/* 笔记封面圆角继承外层玻璃卡片,避免 SVG 元素自身圆角与内部橙色块 rx 重复裁剪 */
.uptab-widget__note .uptab-widget__cover-svg {
	border-radius: inherit;
}

.uptab-widget__note-body {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	overflow: hidden;
}

.uptab-widget__note-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.uptab-widget__note-preview {
	font-size: 11.5px;
	line-height: 1.5;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.6));
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-all;
}

/* 1×1 笔记:封面铺满,无文字 */
.uptab-tile.uptab-widget[style*="--w:1;--h:1"] .uptab-widget__note {
	padding: 0;
	gap: 0;
}
.uptab-tile.uptab-widget[style*="--w:1;--h:1"] .uptab-widget__cover-svg {
	border-radius: inherit;
	height: 100%;
	object-fit: cover;
}
.uptab-tile.uptab-widget[style*="--w:1;--h:1"] .uptab-widget__note-body {
	display: none;
}

/* ---------- 下班倒计时(固定 1×2 宽磁贴) ---------- */
.uptab-widget__count {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0 14px 0 18px;
	border-radius: var(--uptab-icon-radius, 16px);
	overflow: hidden;
}

.uptab-widget__count-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.uptab-widget__count-label {
	font-size: 13px;
	line-height: 1;
	opacity: 0.92;
	font-weight: 500;
}

.uptab-widget__count-time {
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
}

.uptab-widget__count-img {
	height: 70%;
	width: auto;
	max-width: 45%;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

/* ---------- 小组件商店(市场「小组件」视图) ---------- */
.uptab-widget-store {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
	padding: 20px;
	overflow-y: auto;
	flex: 1;
	align-content: start;
}

.uptab-widget-card {
	background: var(--uptab-glass-bg, rgba(28, 38, 58, 0.72));
	border: 1px solid var(--uptab-glass-border, rgba(255, 255, 255, 0.14));
	border-radius: 14px;
	padding: 16px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
}
.uptab-widget-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(10, 18, 34, 0.4);
	border-color: rgba(201, 162, 39, 0.5);
}

.uptab-widget-card__cover {
	border-radius: 12px;
	overflow: hidden;
}
.uptab-widget-card__cover .uptab-widget__cover-svg {
	width: 100%;
	height: auto;
}
.uptab-widget-card__cover .uptab-widget__cover-img {
	width: 100%;
	height: auto;
	display: block;
}

.uptab-widget-card__name {
	font-size: 15px;
	font-weight: 600;
}

.uptab-widget-card__desc {
	font-size: 12px;
	line-height: 1.5;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.6));
}

.uptab-widget-card__sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
}
.uptab-widget-card__sizes span {
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--uptab-glass-hover, rgba(255, 255, 255, 0.12));
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.7));
}

/* ---------- 小组件编辑器(弹窗内) ---------- */
.uptab-widget-editor {
	width: min(520px, 92vw);
}

.uptab-widget-editor__hint {
	font-size: 13px;
	line-height: 1.8;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.7));
}
.uptab-widget-editor__hint b {
	color: var(--uptab-gold, #c9a227);
}

.uptab-widget-editor__md {
	min-height: 180px;
	font-family: Consolas, Menlo, monospace;
	font-size: 13px;
	line-height: 1.6;
	resize: vertical;
}

.uptab-widget-editor__preview-title {
	font-size: 12px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.6));
	margin: 10px 0 6px;
}

.uptab-widget-editor__preview {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	max-height: 220px;
	overflow-y: auto;
	word-break: break-word;
}
.uptab-widget-editor__preview h1,
.uptab-widget-editor__preview h2,
.uptab-widget-editor__preview h3 {
	margin: 8px 0 4px;
	line-height: 1.4;
}
.uptab-widget-editor__preview h1 { font-size: 17px; }
.uptab-widget-editor__preview h2 { font-size: 15px; }
.uptab-widget-editor__preview h3 { font-size: 14px; }
.uptab-widget-editor__preview p { margin: 6px 0; }
.uptab-widget-editor__preview ul,
.uptab-widget-editor__preview ol {
	margin: 6px 0;
	padding-left: 22px;
}
.uptab-widget-editor__preview a {
	color: #7db3ff;
	text-decoration: underline;
}
.uptab-widget-editor__preview code {
	background: rgba(255, 255, 255, 0.14);
	padding: 1px 5px;
	border-radius: 4px;
	font-size: 12px;
}
.uptab-widget-editor__preview pre {
	background: rgba(0, 0, 0, 0.3);
	padding: 10px;
	border-radius: 8px;
	overflow-x: auto;
}
.uptab-widget-editor__preview blockquote {
	border-left: 3px solid var(--uptab-gold, #c9a227);
	margin: 6px 0;
	padding-left: 10px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.7));
}

/* 星期多选 */
.uptab-widget-editor__days {
	display: flex;
	gap: 8px;
}
.uptab-widget-editor__day {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.12);
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.7));
	cursor: pointer;
	font-size: 14px;
	user-select: none;
	transition: background 0.15s ease, color 0.15s ease;
}
.uptab-widget-editor__day.is-on {
	background: var(--uptab-gold, #c9a227);
	color: #1f2329;
	font-weight: 600;
}

/* 背景类型分段 */
.uptab-widget-editor__seg {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}
.uptab-widget-editor__seg .uptab-btn.is-active {
	background: var(--uptab-gold, #c9a227);
	color: #1f2329;
	border-color: transparent;
}

/* ===================== 笔记 app(笔记本) ===================== */
/* 居中展开:横向 60% 视口、竖向 80% 视口 */

.uptab-notes {
	width: min(60vw, 1000px);
	height: 80vh;
	max-height: 820px;
	display: flex;
	border-radius: 16px;
	background: var(--uptab-glass-bg, rgba(28, 38, 58, 0.72));
	border: 1px solid var(--uptab-glass-border, rgba(255, 255, 255, 0.14));
	backdrop-filter: var(--uptab-glass-blur, blur(20px) saturate(140%));
	-webkit-backdrop-filter: var(--uptab-glass-blur, blur(20px) saturate(140%));
	box-shadow: var(--uptab-glass-shadow, 0 16px 48px rgba(10, 18, 34, 0.42));
	overflow: hidden;
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	animation: uptab-pop-in 0.2s ease;
}

/* ---------- 左栏:列表 ---------- */
.uptab-notes__side {
	width: 28%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	border-right: 1px solid var(--uptab-glass-line, rgba(255, 255, 255, 0.1));
	min-width: 180px;
}

.uptab-notes__toolbar {
	display: flex;
	gap: 8px;
	padding: 12px;
	flex-shrink: 0;
}

.uptab-notes__search {
	flex: 1;
	min-width: 0;
	height: 34px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1px solid var(--uptab-glass-line, rgba(255, 255, 255, 0.14));
	background: rgba(255, 255, 255, 0.12);
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	font-size: 13px;
	outline: none;
	box-sizing: border-box;
}
.uptab-notes__search::placeholder {
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.5));
}
.uptab-notes__search:focus {
	border-color: rgba(201, 162, 39, 0.6);
}

.uptab-notes__new {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 10px;
	border: none;
	background: var(--uptab-gold, #c9a227);
	color: #1f2329;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.uptab-notes__new:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.uptab-notes__list {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 0 8px 8px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
.uptab-notes__list::-webkit-scrollbar {
	width: 5px;
}
.uptab-notes__list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.25);
	border-radius: 4px;
}

.uptab-notes__item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 10px;
	cursor: pointer;
	margin-bottom: 2px;
	transition: background 0.12s ease;
}
.uptab-notes__item:hover {
	background: var(--uptab-glass-hover, rgba(255, 255, 255, 0.08));
}
.uptab-notes__item.is-active {
	background: rgba(201, 162, 39, 0.16);
	border: 1px solid rgba(201, 162, 39, 0.45);
	padding: 7px 9px;
}

.uptab-notes__item-main {
	flex: 1;
	min-width: 0;
}
.uptab-notes__item-title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.uptab-notes__item-time {
	font-size: 11px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.5));
	margin-top: 2px;
}

.uptab-notes__item-del {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.4);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	border-radius: 6px;
	visibility: hidden;
}
.uptab-notes__item:hover .uptab-notes__item-del {
	visibility: visible;
}
.uptab-notes__item-del:hover {
	background: rgba(239, 68, 68, 0.3);
	color: #fff;
}

.uptab-notes__foot {
	padding: 10px 12px;
	border-top: 1px solid var(--uptab-glass-line, rgba(255, 255, 255, 0.1));
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-shrink: 0;
}

.uptab-notes__clear {
	border: none;
	background: transparent;
	color: #f87171;
	font-size: 12.5px;
	text-align: left;
	padding: 4px 2px;
	cursor: pointer;
	border-radius: 6px;
}
.uptab-notes__clear:hover {
	background: rgba(239, 68, 68, 0.18);
}

.uptab-notes__sync {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.6));
	cursor: default;
	user-select: none;
}
.uptab-notes__sync input {
	accent-color: var(--uptab-gold, #c9a227);
}

/* ---------- 右栏:编辑/预览 ---------- */
.uptab-notes__main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.uptab-notes__head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px 4px;
	flex-shrink: 0;
}

.uptab-notes__title {
	flex: 1;
	min-width: 0;
	height: 38px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1px solid var(--uptab-glass-line, rgba(255, 255, 255, 0.14));
	background: rgba(255, 255, 255, 0.12);
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	font-size: 15px;
	font-weight: 600;
	outline: none;
	box-sizing: border-box;
}
.uptab-notes__title:focus {
	border-color: rgba(201, 162, 39, 0.6);
}

.uptab-notes__close {
	width: 34px;
	height: 38px;
	flex-shrink: 0;
	border: 1px solid var(--uptab-glass-line, rgba(255, 255, 255, 0.2));
	background: var(--uptab-glass-hover, rgba(255, 255, 255, 0.08));
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.7));
	font-size: 18px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
.uptab-notes__close:hover {
	background: var(--uptab-glass-hover, rgba(255, 255, 255, 0.18));
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
}

.uptab-notes__tabs {
	display: flex;
	gap: 4px;
	padding: 8px 14px 0;
	flex-shrink: 0;
}

.uptab-notes__tab {
	border: none;
	background: transparent;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.6));
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
.uptab-notes__tab:hover {
	background: var(--uptab-glass-hover, rgba(255, 255, 255, 0.1));
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
}
.uptab-notes__tab.is-active {
	background: var(--uptab-gold, #c9a227);
	color: #1f2329;
	font-weight: 600;
}

.uptab-notes__edit,
.uptab-notes__preview {
	flex: 1;
	min-height: 0;
	margin: 10px 14px 0;
	border-radius: 12px;
	border: 1px solid var(--uptab-glass-line, rgba(255, 255, 255, 0.12));
	box-sizing: border-box;
}

.uptab-notes__edit {
	background: rgba(255, 255, 255, 0.1);
	color: var(--uptab-glass-text, rgba(255, 255, 255, 0.92));
	padding: 12px 14px;
	font-size: 13.5px;
	line-height: 1.7;
	font-family: Consolas, Menlo, "Microsoft YaHei", monospace;
	resize: none;
	outline: none;
}
.uptab-notes__edit:focus {
	border-color: rgba(201, 162, 39, 0.6);
}
.uptab-notes__edit::placeholder {
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.4));
}

.uptab-notes__preview {
	background: rgba(255, 255, 255, 0.07);
	overflow-y: auto;
	padding: 14px 18px;
	font-size: 13.5px;
	line-height: 1.8;
	word-break: break-word;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
	display: none;
}
.uptab-notes__preview::-webkit-scrollbar {
	width: 5px;
}
.uptab-notes__preview::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.25);
	border-radius: 4px;
}
.uptab-notes__preview h1,
.uptab-notes__preview h2,
.uptab-notes__preview h3 {
	margin: 10px 0 5px;
	line-height: 1.4;
}
.uptab-notes__preview h1 { font-size: 19px; }
.uptab-notes__preview h2 { font-size: 17px; }
.uptab-notes__preview h3 { font-size: 15px; }
.uptab-notes__preview p { margin: 7px 0; }
.uptab-notes__preview ul,
.uptab-notes__preview ol {
	margin: 7px 0;
	padding-left: 24px;
}
.uptab-notes__preview a {
	color: #7db3ff;
	text-decoration: underline;
}
.uptab-notes__preview code {
	background: rgba(255, 255, 255, 0.14);
	padding: 1px 5px;
	border-radius: 4px;
	font-size: 12.5px;
}
.uptab-notes__preview pre {
	background: rgba(0, 0, 0, 0.3);
	padding: 12px;
	border-radius: 8px;
	overflow-x: auto;
}
.uptab-notes__preview blockquote {
	border-left: 3px solid var(--uptab-gold, #c9a227);
	margin: 7px 0;
	padding-left: 12px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.7));
}
.uptab-notes__preview img {
	max-width: 100%;
	border-radius: 8px;
}

.uptab-notes__status {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 14px 12px;
	flex-shrink: 0;
	font-size: 12px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.55));
}

.uptab-notes__actions {
	margin-left: auto;
	display: flex;
	gap: 8px;
}

.uptab-notes__empty {
	padding: 18px 12px;
	text-align: center;
	font-size: 12.5px;
	color: var(--uptab-glass-text-2, rgba(255, 255, 255, 0.5));
}

/* ---------- 移动端:面板放宽、左右堆叠 ---------- */
@media (max-width: 720px) {
	.uptab-notes {
		width: 94vw;
		height: 86vh;
		height: 86dvh; /* 移动端地址栏动态高度修正 */
		flex-direction: column;
	}
	.uptab-notes__side {
		width: 100%;
		min-width: 0;
		height: 38%;
		flex-shrink: 0;
		border-right: none;
		border-bottom: 1px solid var(--uptab-glass-line, rgba(255, 255, 255, 0.1));
	}
	.uptab-notes__main {
		height: 62%;
	}
}
