/*
 * Aircraft page
 */
.ac .card_label {
	width: 50%;
	min-width: 25ch;
	max-width: 60%;
	flex: 1 0 25ch;
}

.ac .noAircraftText {
	text-align: center;
	padding-top: 40px;
	font-size: 120%;
	font-weight: bold;
	color: darkgrey;
}

/* style data sources table */
.ac .dataSources {
	width: 100%;
}
.ac .dataSources td:first-child, .ac .dataSources th:first-child {
	border-right: 1px solid var(--main-input-border-color);
}
.ac .dataSources tr {
	border-bottom: 1px solid var(--main-input-border-color);
}
.ac .dataSources tbody tr:last-child {
	border-bottom: none;
}

.ac .modelOptionRow-disable {
	color: darkgrey;
}

.acDataSourceList {
	margin: 0px;
}

.acEmpty {
	margin-right: 1em;
}
.acEmpty div:nth-child(2) {
	margin-bottom: 0.5em;
}

.acSeats div:first-child {
	text-align: center;
}
.acSeat {
	position: relative;
	height: 40px;
	width: 40px;
}
.acSeatbase {
	position: absolute;
	height: 100%;
	width: 100%;
	border-radius: 8px;
	border: 1px solid blue;
}
.acSeatback {
	position: absolute;
	bottom: 0;					/* seat facing forward */
	height: 16px;
	width: 100%;
	border-radius: 4px 4px 8px 8px;
	border: 1px solid blue;
}
.acSeatFixed .acSeatbase, .acSeatFixed .acSeatback {
	border-color: black;
}
.acSeatAft {
	transform: rotate(180deg);
}
.acSeatRemoved .acSeatbase {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: grey;
}
.acSeatRemoved .acSeatbase::before {
	content: "X";
}
.acSeatRemoved .acSeatback {
	visibility: hidden;
}
