/* The Great Academy — AI Study Tool
   Brand palette: teal #14B8A6, coral orange #F97316, deep blue #1E3A5F, sunny yellow #FBBF24 */

.gaa-ai-tool-widget {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	margin: 24px 0;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
	font-family: inherit;
}

.gaa-ai-tool-widget.gaa-locked {
	background: #f8fafc;
	text-align: center;
	color: #1E3A5F;
	font-weight: 600;
	padding: 30px 20px;
}

.gaa-ai-tool-widget.gaa-coming-soon {
	background: #fffbeb;
	border-color: #FBBF24;
	text-align: center;
	padding: 24px 20px;
}

.gaa-ai-tool-widget.gaa-coming-soon p {
	color: #1E3A5F;
	margin: 6px 0 0 0;
	font-weight: 500;
}

.gaa-widget-title {
	color: #1E3A5F;
	margin: 0 0 14px 0;
	font-size: 18px;
	font-weight: 700;
}

.gaa-mode-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.gaa-mode-btn {
	background: #14B8A6;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}

.gaa-mode-btn:hover {
	background: #0f9c8c;
	transform: translateY(-1px);
}

.gaa-mode-btn:disabled {
	background: #cbd5e1;
	cursor: not-allowed;
	transform: none;
}

.gaa-mode-btn.gaa-active {
	background: #F97316;
}

.gaa-status-line {
	font-size: 13px;
	color: #64748b;
	min-height: 18px;
	margin-bottom: 8px;
}

.gaa-status-line.gaa-error {
	color: #dc2626;
	font-weight: 600;
}

.gaa-loading {
	color: #1E3A5F;
	font-weight: 600;
	padding: 10px 0;
}

.gaa-result {
	background: #f8fafc;
	border-left: 4px solid #FBBF24;
	border-radius: 6px;
	padding: 16px;
	margin-top: 10px;
	white-space: pre-wrap;
	line-height: 1.6;
	color: #1E3A5F;
}

.gaa-result:empty {
	display: none;
}
