/* Custom scrollbar for better visibility */
		#chat-window::-webkit-scrollbar,
		#monitor-modal-window::-webkit-scrollbar {
			width: 8px;
		}
		#chat-window::-webkit-scrollbar-thumb,
		#monitor-modal-window::-webkit-scrollbar-thumb {
			background: #9ca3af; /* gray-400 */
			border-radius: 4px;
		}
		#chat-window::-webkit-scrollbar-track,
		#monitor-modal-window::-webkit-scrollbar-track {
			background: #f3f4f6; /* gray-100 */
		}
		body { 
  
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: semibold;
}

@font-face {
			font-family: 'Bingo Regular';
			src: url('https://oxi.ng/css/bingo.otf') format('opentype');
		}
		.custom-text {
			font-family: 'Bingo Regular', sans-serif;
			font-size: 150px;
			fill: white;
			text-anchor: middle;
			dominant-baseline: middle;
		}



.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.animate-spin {
  animation: spin 1.8s linear infinite;
}

/* Hide scrollbar for IE, Edge, and Firefox */
.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;	 /* Firefox */
}
		.monitor-log-info { color: #10b981; } /* emerald-500 */
		.monitor-log-warn { color: #f59e0b; } /* amber-500 */
		.monitor-log-error { color: #ef4444; } /* red-500 */

		/* --- Custom CSS for the Modal --- */
		.modal-overlay {
			/* Tailwind classes cannot easily handle fixed full-screen overlay with z-index */
			position: fixed;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.75); /* Dark semi-transparent background */
			display: none; /* Hidden by default */
			justify-content: center;
			align-items: center;
			z-index: 50; /* Above everything else */
		}
		/* --- NEW CSS for Centered Welcome Message --- */
		#welcome-message {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;   /* 👈 ADD THIS */
	justify-content: center;
	align-items: center;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
	z-index: 10;
}
		.welcome-text {
			font-size: 1.5rem;
			font-weight: 600;
			
		}
		.greeting-text {
			font-size: 1rem;
			font-weight: 400;
			
		}