
/* Base highlight style */
.tt-highlight {
	display: inline;
}

/* Light background variant (dark text usually looks good) */
.tt-highlight--light {
	color: #00c8ff;
}

/* Dark background variant (more contrast) */
.tt-highlight--dark {
	color: #033a6d;
}

/* Template Widget Styles */
.tt-template {
	position: relative;
}

.tt-template-heading {
	margin: 0;
	padding: 25px 0;
}

.tt-template-content {
	position: relative;
}

/* Theme-based visibility controls */

/* White theme - show white-only, hide dark-only */
.tt-template-theme-white .tt-template-dark-only {
	display: none;
}

/* Dark theme - show dark-only, hide white-only */
.tt-template-theme-white .tt-template-white-only, .tt-template-theme-dark .tt-template-dark-only {
	display: flex;
}

.tt-template-theme-dark .tt-template-white-only {
	display: none;
}

/* Content visible in both themes */
.tt-template-content-all {
	display: block;
}

/* Template placeholder and error messages */
.tt-template-placeholder, .tt-template-error {
	padding: 1em;
	background: #f0f0f0;
	border: 1px dashed #ccc;
	color: #666;
	text-align: center;
}

.tt-template-error {
	background: #ffe0e0;
	border-color: #f99;
	color: #c00;
}
