/* ── Signature canvas ─────────────────────────────────────────────────────── */
.anabella-sig-canvas {
	display: block;
	width: 100%;
	height: 200px;
	border: 2px solid #ccc;
	border-radius: 4px;
	background: #fff;
	cursor: crosshair;
	touch-action: none; /* required for pointer events on mobile */
	box-sizing: border-box;
}

.anabella-sig-canvas:hover {
	border-color: #888;
}

/* ── Action buttons ───────────────────────────────────────────────────────── */
.anabella-sig-actions {
	margin-top: 8px;
	text-align: left;
}

.anabella-clear-btn,
.anabella-resign-btn {
	display: inline-block;
	padding: 5px 14px;
	background: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 3px;
	cursor: pointer;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
}

.anabella-clear-btn:hover,
.anabella-resign-btn:hover {
	background: #e6e6e6;
	border-color: #888;
	color: #222;
}

/* ── Existing signature display ──────────────────────────────────────────── */
.anabella-sig-existing {
	margin-bottom: 8px;
}

.anabella-sig-existing img {
	max-width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 4px;
	background: #fff;
}

/* ── Admin entry detail ───────────────────────────────────────────────────── */
.anabella-sig-entry-detail img {
	max-width: 400px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 4px;
	background: #fff;
}

/* ── Form editor placeholder ─────────────────────────────────────────────── */
.anabella-sig-editor-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	border: 2px dashed #ccc;
	border-radius: 4px;
	background: #fafafa;
	color: #999;
	font-style: italic;
}

/* ── RTL ─────────────────────────────────────────────────────────────────── */
html[dir="rtl"] .anabella-sig-actions {
	text-align: right;
}
