	body.no-select {
		user-select: none; /* Disables text selection */
	}

	.support_window {
		position: absolute;
		top: 50px;
		left: 50px;
		width: 300px;
		height: 200px;
		border: 1px solid lightgray;
		background-color: #f1f1f1;
		overflow: auto;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
		z-index: 2500;
		display: none;
	}

	.support_window_header {
		color: white;
		cursor: move;
		text-align: center;
	}

	/* Resizable corner */
	.support_window_resizer {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 20px;
		height: 20px;
		background: lightgray;
		cursor: nwse-resize;
		display: flex;
		align-items: center;
		justify-content: center;
	}