/* Tutoring Club Chatbot widget styles. Minimal and unopinionated. */
#tutoringclub-chatbot-root {
	position: fixed;
	bottom: calc( 20px + 4rem );
	right: 20px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}

#tutoringclub-chatbot-root .cc-toggle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: none;
	background: #2271b1;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.15 );
}

#tutoringclub-chatbot-root .cc-toggle:hover {
	background: #135e96;
}

#tutoringclub-chatbot-root .cc-window {
	width: 360px;
	max-width: calc( 100vw - 40px );
	height: 500px;
	max-height: calc( 100vh - 40px - 4rem );
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba( 0, 0, 0, 0.2 );
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

#tutoringclub-chatbot-root .cc-header {
	padding: 12px 16px;
	background: #2271b1;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}

#tutoringclub-chatbot-root .cc-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

#tutoringclub-chatbot-root .cc-messages {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
	background: #f6f7f7;
}

#tutoringclub-chatbot-root .cc-msg {
	margin-bottom: 8px;
	padding: 8px 12px;
	border-radius: 12px;
	max-width: 85%;
	word-wrap: break-word;
	white-space: pre-wrap;
}

#tutoringclub-chatbot-root .cc-msg-user {
	background: #2271b1;
	color: #fff;
	margin-left: auto;
	border-bottom-right-radius: 4px;
}

#tutoringclub-chatbot-root .cc-msg-assistant {
	background: #fff;
	color: #1e1e1e;
	border: 1px solid #dcdcde;
	border-bottom-left-radius: 4px;
}

#tutoringclub-chatbot-root .cc-msg.cc-error {
	background: #fcf0f1;
	color: #b32d2e;
	border-color: #f0b7b8;
}

#tutoringclub-chatbot-root .cc-form {
	display: flex;
	padding: 8px;
	border-top: 1px solid #dcdcde;
	background: #fff;
}

#tutoringclub-chatbot-root .cc-input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #dcdcde;
	border-radius: 20px;
	outline: none;
	font-size: 14px;
}

#tutoringclub-chatbot-root .cc-input:focus {
	border-color: #2271b1;
}

#tutoringclub-chatbot-root .cc-send {
	margin-left: 8px;
	padding: 8px 16px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 600;
}

#tutoringclub-chatbot-root .cc-send:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
