/**
 * Orshot admin styles.
 *
 * @package Orshot
 */

.orshot-settings .orshot-card {
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	padding: 20px 24px;
	margin-bottom: 20px;
}

.orshot-settings .orshot-card h2 {
	margin-top: 0;
	padding-top: 0;
	border-bottom: none;
}

/* Connection status */
.orshot-status {
	font-size: 14px;
	margin-bottom: 12px;
}

.orshot-status--connected {
	color: #00a32a;
}

.orshot-status--disconnected {
	color: #d63638;
}

.orshot-workspace-id {
	color: #787c82;
	font-size: 12px;
	margin-left: 6px;
}

/* Template picker modal */
.orshot-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100100;
}

.orshot-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.orshot-modal__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 8px;
	width: 90%;
	max-width: 800px;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.orshot-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #e0e0e0;
}

.orshot-modal__header h3 {
	margin: 0;
}

.orshot-modal__close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #787c82;
	line-height: 1;
	padding: 0 4px;
}

.orshot-modal__close:hover {
	color: #1d2327;
}

.orshot-modal__body {
	padding: 20px;
	overflow-y: auto;
}

/* Template grid */
.orshot-template-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.orshot-template-item {
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s;
	text-align: center;
}

.orshot-template-item:hover {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
}

.orshot-template-item__thumb {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f0f0f1;
}

.orshot-template-item__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.orshot-template-item__nothumb {
	width: 100%;
	height: 100%;
	background: #f0f0f1;
}

.orshot-template-item__name {
	font-size: 13px;
	font-weight: 500;
	color: #1d2327;
	word-break: break-word;
	padding: 10px 12px;
}

/* Field mapping table */
.orshot-field-mapping-table {
	width: 100%;
	border-collapse: collapse;
}

.orshot-field-mapping-table td {
	padding: 8px 6px;
	vertical-align: middle;
	border-bottom: 1px solid #f0f0f1;
}

.orshot-field-mapping__label strong {
	font-size: 13px;
}

.orshot-field-mapping__label .description {
	font-size: 12px;
	margin-top: 2px;
}

.orshot-field-mapping__example {
	font-size: 11px;
	background: #f6f7f7;
	padding: 1px 5px;
	border-radius: 3px;
	color: #787c82;
}

.orshot-field-mapping__arrow {
	font-size: 16px;
	color: #787c82;
	display: inline-block;
	padding: 0 8px;
}

.orshot-field-mapping__select {
	min-width: 180px;
}
