body.support-widget-open {
	overflow: hidden;
}

.support-widget-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .7);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .2s ease;
}

.support-widget-backdrop.active {
	display: flex;
}

.support-widget-backdrop.visible {
	opacity: 1;
}

.support-widget-modal {
	background: #0d1117;
	border-radius: 10px;
	overflow: hidden;
	width: 90vw;
	max-width: 1150px;
	height: 85vh;
	display: flex;
	flex-direction: column;
	position: relative;
	opacity: 0;
	transform: scale(0.92);
	transition: opacity .22s ease-out, transform .22s ease-out;
}

.support-widget-backdrop.visible .support-widget-modal {
	opacity: 1;
	transform: scale(1);
}

.support-widget-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	background: #161b22;
	flex-shrink: 0;
}

.support-widget-nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.support-widget-nav-btn {
	background: none;
	border: none;
	color: #8b949e;
	font-size: 16px;
	cursor: pointer;
	line-height: 1;
	padding: 2px 6px;
	border-radius: 4px;
	transition: color .15s, background .15s;
}

.support-widget-nav-btn:hover {
	color: #eee;
	background: rgba(255, 255, 255, .08);
}

.support-widget-title {
	font: 14px/1 Arial, sans-serif;
	color: #8b949e;
	margin-left: 8px;
}

.support-widget-close {
	background: none;
	border: none;
	color: #8b949e;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	padding: 0 4px;
}

.support-widget-close:hover {
	color: #eee;
}

#support-widget-frame {
	border: none;
	flex: 1;
	width: 100%;
	display: block;
}
