/* Group Edit Mode Styles - Matching Symbol Edit Mode */

.group-edit-banner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: var(--accent-primary);
	color: white;
	height: 48px;
	box-shadow: var(--shadow-md);
	display: none;
}

.group-edit-banner.active {
	display: block;
}

.group-edit-content {
	max-width: 1200px;
	height: 48px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.group-edit-text {
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.group-edit-text svg {
	width: 16px;
	height: 16px;
	opacity: 0.9;
}

.group-edit-text strong {
	font-weight: 600;
}

.group-edit-actions {
	display: flex;
	gap: var(--spacing-sm);
}

.group-edit-exit {
	padding: 6px var(--spacing-lg);
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.15s ease;
	min-width: 80px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	color: var(--accent-primary);
}

.group-edit-exit:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(0);
}
