/**
 * Orshot block editor styles.
 *
 * @package Orshot
 */

.wp-block-orshot-image {
	text-align: center;
}

.orshot-block-placeholder {
	border: 2px dashed #c3c4c7;
	border-radius: 8px;
	padding: 32px 24px;
	text-align: center;
	background: #f6f7f7;
}

.orshot-block-placeholder svg {
	display: block;
	margin: 0 auto 12px;
}

.orshot-block-placeholder__title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 4px;
}

.orshot-block-placeholder__desc {
	font-size: 13px;
	color: #787c82;
	margin-bottom: 16px;
}

.orshot-block-preview img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

.orshot-block-toolbar {
	display: flex;
	gap: 8px;
	margin-top: 8px;
	justify-content: center;
}

.orshot-template-select {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	max-height: 300px;
	overflow-y: auto;
	padding: 8px 0;
}

.orshot-template-select__item {
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	padding: 8px;
	cursor: pointer;
	font-size: 12px;
	text-align: center;
	transition: border-color 0.15s;
}

.orshot-template-select__item:hover,
.orshot-template-select__item--selected {
	border-color: #2271b1;
}

.orshot-template-select__item img {
	max-width: 100%;
	height: auto;
	border-radius: 2px;
	margin-bottom: 4px;
}
