/*chatgpt-runtime.css*/
#chatgpt-app {
	border:1px solid #ccc;
	padding:10px;
	margin-top:20px;
}
.chatgpt-box textarea {
	width:100%;
	height:60px;
	margin-bottom:5px;
}
.chatgpt-box button {
	margin-top:5px;
}
#chatgpt-output {
	white-space: pre-wrap;
}
#chatgpt-categories,
#chatgpt-input {
	display: inline-block;
}
@media print {
	#chatgpt-send,
	#chatgpt-print,
	#chatgpt-categories,
	#chatgpt-input {
		display: none;
	}
}
.chatgpt-instructions {
    margin-bottom: 12px;
    padding: 8px 10px;
    background: #09292C;
    border-left: 4px solid #F4D4A8;
    font-size: 0.95em;
    line-height: 1.4;
    color: #F4D4A8;
}
.chatgpt-emoji {
    background: white;
    border-radius: 4px;
    padding: 2px 4px;
}
.chatgpt-controls,
.chatgpt-tts-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
