.epmp-photo-manager {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 10px 0 4px;
}

.epmp-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
	gap: 10px;
	margin-bottom: 10px;
}

.epmp-photo-tile {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f7fafc;
	border: 2px solid transparent;
	cursor: grab;
}

.epmp-photo-tile.is-cover {
	border-color: #37474f;
}

.epmp-photo-tile.is-dragging {
	opacity: 0.4;
}

.epmp-photo-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.epmp-photo-cover-badge {
	display: none;
	position: absolute;
	top: 6px;
	left: 6px;
	background: #37474f;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 2px 7px;
	border-radius: 20px;
}

.epmp-photo-tile.is-cover .epmp-photo-cover-badge {
	display: inline-block;
}

.epmp-photo-tile-actions {
	position: absolute;
	top: 6px;
	right: 6px;
	display: flex;
	gap: 4px;
}

.epmp-photo-tile-actions button {
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.epmp-photo-tile-actions button:hover {
	background: rgba(0, 0, 0, 0.8);
}

.epmp-photo-drop-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 2px dashed #cbd5e0;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	font-size: 13px;
	color: #718096;
	cursor: pointer;
	transition: 0.15s;
}

.epmp-photo-drop-zone.is-dragover {
	border-color: #37474f;
	background: #f7fafc;
	color: #37474f;
}

.epmp-photo-drop-icon {
	font-size: 22px;
	line-height: 1;
	color: #a0aec0;
}

.epmp-photo-message {
	font-size: 12.5px;
	margin: 6px 0 0;
}
