/*
 * Aircraft page
 */
.ac .card_label {
	min-width: 15ch;
	max-width: 60%;
	flex: 1 0 25ch;
}
.acCard_settings .card_label,
.acCard_cg .card_label {
	flex-basis: 15ch !important;
}

.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;
}

.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;
}
.acFixed .acSeatbase, .acFixed .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;
}

/* Lavatory faces left and has a different shape */
.acSeatLav {
	transform: rotate(-90deg);
}
.acSeatLav .acSeatback {
	border-radius: 4px 4px 0 0;
	height: 8px;
}
.acSeatLav .acSeatbase {
	border-radius: 12px 12px 0 0;
}
.acSeatConfigValue > table {
	margin-right: 1ch;
}
