
.launcher-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #aacccc;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	overflow: hidden;
	filter: drop-shadow(-1px -1px 6px rgba(0,0,0,0.3));
	z-index: 999999;
}

.chat-text {
	position: absolute;
	color: rgba(255, 255, 255, 0.1);
	font-size: 36px;
	font-weight: bold;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.launcher-button svg {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	fill: #FFFFFF;
	transition: transform 0.6s ease-in-out;
}

.rotate-center:hover svg {
	transform: rotate(360deg);
}

@keyframes rotate-center {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

.launcher-button svg {
	width: 100%;
	height: 100%;
	fill: #FFFFFF; /* Ensure the icon is filled white */
	transition: transform 0.6s ease-in-out;
}

#loading-spinner {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #aacccc;
	color: white;
	z-index: 1000;
	justify-content: center;
	align-items: center;
	filter: drop-shadow(-1px -1px 6px rgba(0,0,0,0.3))
}

.spinner {
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top: 4px solid white;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

#loading-balloon {
    position: fixed;
    bottom: 100px;
    right: -60px;
	transform: translateX(-50%);
	background-color: #aacccc;
	color: white;
	padding: 10px 15px;
	border-radius: 10px;
	z-index: 1001;
	font-size: 14px;
	box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
	display: none;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease-in-out; 
	width: 195px;
	z-index: 99999;
	filter: drop-shadow(-1px -1px 6px rgba(0,0,0,0.3))
}

#loading-balloon.show {
	opacity: 1;
}

#loading-balloon::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 43%;
	margin-left: 68px;
	border-width: 7px;
	border-style: solid;
	border-color: #aacccc transparent transparent transparent;
}

button#c21-launcher-button {
    filter: drop-shadow(-1px -1px 6px rgba(0,0,0,0.3))
}