.e5-display-event-container {
	display: flex;
	gap: 20px;
}

.e5-display-event-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-radius: 0.25em;
}

.e5-display-event-button.accept.active {
	background-color: green;
}

.e5-display-event-button.reject.active {
	background-color: red;
}

.e5-display-event-button.accept.active::before, 
.e5-display-event-button.reject.active::before {
	color: #ffffff;
}

.e5-display-event-button.accept::before,
.e5-display-event-button.reject::before {
	color: #50575e;
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.e5-display-event-button.accept::before {
	content: "\2714";
}

.e5-display-event-button.reject::before {
	content: "\2716";
}

.e5-term-label-container {
	display: flex;
	gap: 5px;
	flex-direction: column;
}

.e5-term-label {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	padding: 0 8px;
	border-width: 2px;
	border-style: solid;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
	white-space: nowrap;
	width: fit-content;
	min-height: 25px;
	min-width: unset;
}

.e5-term-label-wrap {
	white-space: wrap;
}

@media screen and (max-width: 450px) {
	.e5-term-label {
		font-size: 12px;
	}
}

@media screen and (max-width: 395px) {
	.e5-term-label {
		font-size: 10px;
	}
}

@media screen and (max-width: 350px) {
	.e5-term-label {
		font-size: 8px;
	}
}