body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 20px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	color: #333;
	line-height: 1.6;
}

.h4 {
	font-size: 12px;
	font-weight: bold;
}

.label {
	font-size: 10px;
}

.logo {
	width: 300px;
	height: auto;
	margin-bottom: 20px;
}

.uploaded-textarea, .annotated-textarea {
	font-size: 10px;
}

.card {
	background: white;
	border-radius: 20px;
	box-shadow: var(--shadow);
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid var(--border);
}

.card-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
}

.card-header h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark);
	margin-left: 0.5rem;
}

.card-header i {
	font-size: 1.5rem;
	color: var(--primary);
}


div.vis-editable div.vis-editable.vis-selected {
	/* custom styling for editable items... */
	
}

div.vis-readonly, div.vis-readonly.vis-selected {
	/* custom styling for readonly items... */
	background-color: #ff4500;
	border-color: red;
	color: white;
}