.gtsmc-menu-wrapper {
	width: 100%;
}

.gtsmc-menu-html {
	width: 100%;
}

.gtsmc-picker-toolbar {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999999;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #111;
	color: #fff;
	padding: 10px 12px;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
	font-family: Arial, sans-serif;
}

.gtsmc-picker-btn {
	background: #2271b1;
	color: #fff;
	border: 0;
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.2;
}

.gtsmc-picker-btn:hover {
	background: #135e96;
}

.gtsmc-picker-status {
	font-size: 12px;
	color: #e5e5e5;
	max-width: 220px;
}

.gtsmc-picker-overlay {
	position: fixed;
	inset: 0;
	z-index: 999998;
	background: rgba(0, 0, 0, 0.04);
	pointer-events: none;
}

.gtsmc-picker-hover {
	outline: 2px solid #ff4f4f !important;
	outline-offset: 2px !important;
	cursor: crosshair !important;
}

body.gtsmc-picking-active * {
	cursor: crosshair !important;
}

.gtsmc-menu-wrapper.gtsmc-sticky-ready.gtsmc-is-sticky-active {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 99990;
}

.gtsmc-menu-wrapper.gtsmc-sticky-top.gtsmc-is-sticky-active {
	top: 0;
	bottom: auto;
}

.gtsmc-menu-wrapper.gtsmc-sticky-bottom.gtsmc-is-sticky-active {
	bottom: 0;
	top: auto;
}

.gtsmc-sticky-placeholder {
	width: 100%;
}

.gtsmc-menu-wrapper.gtsmc-sticky-ready {
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.gtsmc-menu-wrapper.gtsmc-sticky-ready.gtsmc-sticky-hidden-by-scroll.gtsmc-is-sticky-active {
	opacity: 0;
	pointer-events: none;
}

.gtsmc-menu-wrapper.gtsmc-sticky-top.gtsmc-sticky-hidden-by-scroll.gtsmc-is-sticky-active {
	transform: translateY(-100%);
}

.gtsmc-menu-wrapper.gtsmc-sticky-bottom.gtsmc-sticky-hidden-by-scroll.gtsmc-is-sticky-active {
	transform: translateY(100%);
}
