/*
 * Single-event shortcodes: inschrijfknop + statuslabels.
 */

/* Inschrijfknop: erft de Elementor-knopstijl; wij zetten enkel de 6px-radius en
   het icoon (12px indent) erbij. */
.zzhr-inschrijfknop {
	border-radius: 6px !important;
}

.zzhr-inschrijfknop .elementor-button-icon {
	margin-left: 12px !important;
}

/* "Dit event is afgelopen"-label (in plaats van de knop). */
.zzhr-single-finished {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	background: var( --zzhr-red, #c0392b );
	color: #fff;
	font-weight: 600;
	line-height: 1.2;
}

/* Twee inline labels: eventtype(s) + eventueel "Afgelopen". */
.zzhr-event-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.zzhr-event-label {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	color: #fff;
}

.zzhr-event-label--type {
	background: var( --e-global-color-06197e1 );
}

.zzhr-event-label--finished {
	background: var( --zzhr-red, #c0392b );
}

/* Mobiel: compactere labels. */
@media ( max-width: 560px ) {
	.zzhr-event-label {
		padding: 10px 18px;
		font-size: 12px;
	}
}
