/* Notizen-Gruppen Styles */
.group-badge {
	background: var(--color-accent-solid);
	color: var(--color-bg);
	padding: 0.2rem 0.5rem;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
}

.badge {
	display: inline-block;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: 0.5rem;
}

.badge-success {
	background: #28a745;
	color: white;
}

.badge-info {
	background: #17a2b8;
	color: white;
}

.badge-warning {
	background: #ffc107;
	color: #212529;
}

.badge-secondary {
	background: #6c757d;
	color: white;
}

/* Checkbox-Gruppen */
.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1rem;
	background: var(--color-surface);
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.checkbox-label:hover {
	background: rgba(212, 175, 55, 0.1);
}

.checkbox-label input[type="checkbox"] {
	margin: 0;
}

/* Info-Text */
.info-text {
	color: var(--color-text);
	opacity: 0.7;
	font-size: 0.9rem;
}

/* Gruppen-Filter */
#group-filter {
	padding: 0.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface);
	color: var(--color-text);
	min-width: 200px;
}
