.event-card {
	background: #f0f0f0;
	border-radius: 0.5rem;
}
.event-card.event-card-big {
	margin: auto;
}
.event-card label {
	font-weight: 700;
}
.event-card .event-title {
	padding: 1rem;
	background: #ddd;
	border-radius: 0.5rem 0.5rem 0 0;
	padding-bottom: 0.5rem;
}
.event-card .event-info {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	padding-top: 0.5rem;
}
.event-card .event-info .event-status {
	font-weight: bold;
}
.event-status.event-status-draft {
	color: #4e4e4e;
}
.event-status.event-status-published {
	color: #7b117b;
}
.event-status.event-status-recruiting {
	color: #277b60;
}
.event-status.event-status-stopped {
	color: rgba(var(--bs-danger-rgb));
}
.event-status.event-status-inactive {
	color: #931e1e;
}
.event-status.event-status-running {
	color: rgba(var(--bs-success-rgb));
}
.event-status.event-status-waiting {
	color: rgba(var(--bs-warning-rgb));
}
.event-card .event-info .event-header {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}
.event-card.event-card-big .event-info .event-header {
	font-size: 1.25rem;
	flex-wrap: wrap;
	row-gap: 0;
}
.admin-page .event-card.event-card-big .event-info .event-header {
	justify-content: center;
}
.event-card .event-info .event-header > div {
	display: flex;
	flex-direction: row;
	gap: 0.25rem;
}
.event-card.event-card-big .event-info .event-tagline {
	font-size: 1.1rem;
	font-style: oblique;
	margin-bottom: 1rem;
}
.admin-page .event-card.event-card-big .event-info .event-tagline {
	text-align: center;
}
.event-card.event-card-big .event-info .event-characters .character {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.event-card .event-info .event-actions {
	display: flex;
	flex-direction: row;
	width: 100%;
	align-items: center;
	gap: 1rem;
}
.event-card .event-info .event-actions > a {
	font-size: 1.25rem;
	position: relative;
}
@media only screen and (min-width: 768px) {
	.event-card .event-info .event-actions > a.vertical-rule::after {
		content:"";
		display: block;
		position: absolute;
		height: 1.5rem;
		border: 0.5px solid #333333;
		right: 0;
		transform: translate(0.67rem, 50%);
		top: -25%;
	}
}
@media only screen and (max-width: 767px) {
	.event-card .event-info .event-actions {
		flex-direction: column;
		justify-content: center;
	}
	.event-card .event-info .event-actions .event-buttons, .event-card .event-info .event-actions .event-buttons * {
		min-width: 100%;
	}
}
.event-card .event-info .event-actions .event-buttons {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	gap: 0.5rem;
	justify-content: end;
}
.editor-body .change-status-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: end;
	gap: 0.5rem;
	height: auto;
	margin-top: 10px;
}
.editor-body .change-status-row input {
	margin: 0;
}
.editor-body .change-status-row label {
	font-weight: 600;
}
.application-wrapper {
	background: #f0f0f0;
	padding: 1rem;
	border-radius: 0.5rem;
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin-bottom: 2rem;
}
.application-wrapper .player-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.application-wrapper .application-body {
	flex-grow: 1;
	border-left: 1px solid #333333;
	padding-left: 1rem;
}
.application-wrapper .application-buttons {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}