* {
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
	color: #231c14;
	background: #2c3036;
}

.content {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}

.footer {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	padding: 0.35rem 0.75rem;
	background: #2c3036;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.72rem;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.footer a {
	color: #fff;
	text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
	text-decoration: underline;
	outline: none;
}

h1 {
	margin: 8px 12px;
}
p {
	margin: 6px 4px;
	padding: 0px 4px;
}
.menu li {
	width: 120px;
	display: inline-block;
	background-color: #eee; 
	text-align: center;
}

.menu li a{
	text-decoration: none;
	padding: 0 8px 0 8px;
}

.menu li a:hover{
	text-decoration: underline;
	background-color: #fff;
}

.site-header {
	background: #313438;
	display: flex;
	align-items: flex-start; /* align header content to the top so page headers line up */
	justify-content: flex-end;
	padding: 0.5rem 1rem 0.25rem;
	min-height: 56px;
	position: relative; /* allow absolutely-positioning the login panel to avoid pushing content */
}

.site-header-spacer {
	flex: 1 1 auto;
	align-self: center; /* fill the height of the header so the login panel is aligned to the top */
}

.site-header-login {
	display: block;
	position: absolute; /* remove from document flow so it won't push content */
	right: 1rem;
	top: 0.5rem; /* align near the top of the header so left content matches */
	transform: none;
}

.site-nav {
	display: flex;
	gap: 0.65rem;
	padding: 0.35rem 1rem 0.7rem;
	background: #313438;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav-link {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.86);
	background: rgba(255, 255, 255, 0.08);
	transition: background-color 0.16s ease, color 0.16s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	outline: none;
}

.site-nav-link.is-active {
	background: #2159d3;
	color: #fff;
}

.login-shell {
	display: flex;
	align-items: center;
}

.login-shell-logged-out {
	margin-left: auto;
}

.login-link {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.login-dropdown {
	position: relative;
	display: inline-block; /* keep details from expanding full width in Safari */
}

.login-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 0.15rem 0.5rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.12);
	/*-webkit-appearance: none;*/
	line-height: 1;
	vertical-align: middle;
	margin: 0; /* reset default summary margins (Safari) */
}

.login-trigger::-webkit-details-marker {
	display: none;
}

.login-avatar {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	background: #4b5563;
	display: inline-block;
	max-width: 44px;
}

.login-avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	flex-shrink: 0;
}

.login-name {
	display: none;
}

.login-caret {
	display: none;
}

/* Show the logged-in username next to the avatar when not logged out */
.login-shell:not(.login-shell-logged-out) .login-name {
	display: inline-block;
	margin-left: 8px;
	color: #fff;
	font-weight: 600;
}

.login-menu {
	position: absolute;
	right: 0;
	top: calc(100% + 0.6rem);
	min-width: 240px;
	display: grid;
	gap: 0;
	padding: 0;
	border-radius: 12px;
	background: #2d3544;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
	z-index: 20;
	overflow: hidden;
}

.login-role {
	color: #bbb;
	font-size: 0.85rem;
	padding: 0.4rem 0;
}

.login-menu > * {
	display: block;
}

.login-menu-profile {
	padding: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	gap: 0.4rem;
}

.login-profile-name {
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
}

.login-profile-email {
	color: #9db4d1;
	font-size: 0.85rem;
}

.login-logout {
	display: block;
	padding: 0.75rem 1rem;
	color: #ff6b6b;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	border: none;
	background: transparent;
	width: 100%;
	text-align: left;
}

.login-logout:hover,
.login-logout:focus-visible {
	background: rgba(255, 255, 255, 0.08);
}

.login-logout {
	text-decoration: none;
}


label {
	width: 120px;
	display: inline-block;
	text-align: right;
	margin-right: 6px;
}

input {
	width: 240px;
}

input[type="submit"] {
	width: 120px;
	margin-left: 128px;
	margin-bottom: 16px;
}

th {
	padding: 0 8px 0 8px;
	text-align: left;
	background-color: #333;
	color: #fff;
}

td {
	padding: .5em;
	background-color: rgba(255, 255, 255, 0.1);
}

td:nth-child(odd) {
	background-color: #313438;
}

.currentPrice {
	text-align: right;
}

.landing-page {
	padding: 12px;
	flex: 1 0 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
	background: #2c3036;
}

.landing-hero {
	flex: 1 1 auto;
	min-height: calc(100vh - 5rem);
	padding: 2rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.24) 100%),
		url('../images/logo.jpeg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
	overflow: hidden;
}

.landing-hero-content {
	max-width: 34rem;
	text-align: center;
	display: grid;
	gap: 0.8rem;
}

.landing-kicker {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.82);
}

.landing-hero h1 {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.05;
}

.landing-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.02rem;
}

.landing-login-link {
	display: inline-flex;
	align-self: center;
	justify-content: center;
	margin-top: 0.3rem;
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	background: rgb(53, 106, 222);
	color: white;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.landing-login-link:hover,
.landing-login-link:focus-visible {
	background: #2159d3;
	outline: none;
}

@media (min-width: 50em) {
	.landing-hero {
		padding: 4rem 4.5rem;
		justify-content: flex-start;
		min-height: calc(100vh - 4.5rem);
	}

	.landing-hero-content {
		text-align: left;
	}

	.landing-login-link {
		align-self: start;
	}
}

.currentPrice {
	text-align: right;
}
body {
	font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
	color: #231c14;
}

.board-shell {
	padding: 12px;
	font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
	color: #f4f1ea;
	position: relative;
}

.member-home {
	padding: 14px;
}

.member-home-hero {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, #141a23, #212c3c);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
	min-height: 360px;
}

.member-home-overlay {
	padding: 2rem;
	display: grid;
	align-content: center;
	gap: 0.85rem;
	color: #f8fafc;
}

.member-home-kicker {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.76rem;
	color: rgba(255, 255, 255, 0.72);
}

.member-home-overlay h1 {
	margin: 0;
	font-size: clamp(1.8rem, 4.4vw, 3rem);
	line-height: 1.08;
	color: #fff;
}

.member-home-overlay p {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 34ch;
	padding: 0;
}

.member-home-actions {
	display: flex;
	gap: 0.65rem;
	flex-wrap: wrap;
	margin-top: 0.4rem;
}

.member-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 0.95rem;
	border-radius: 10px;
	background: #2159d3;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 0.9rem;
}

.member-home-btn:hover,
.member-home-btn:focus-visible {
	background: #2d6ff9;
	outline: none;
}

.member-home-btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.member-home-btn-secondary:hover,
.member-home-btn-secondary:focus-visible {
	background: rgba(255, 255, 255, 0.25);
}

.member-home-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 880px) {
	.member-home-hero {
		grid-template-columns: 1fr;
	}

	.member-home-image {
		max-height: 260px;
	}
}

.board-loading-overlay {
	position: fixed;
	inset: 0;
	z-index: 220;
	display: grid;
	place-items: center;
	padding: 24px;
	background:
		radial-gradient(circle at top, rgba(53, 106, 222, 0.22), transparent 45%),
		rgba(16, 19, 26, 0.92);
	backdrop-filter: blur(10px);
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.board-loading-overlay.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.board-loading-card {
	min-width: min(92vw, 340px);
	max-width: 420px;
	padding: 22px 24px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(17, 21, 28, 0.92);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 10px;
	color: #f4f1ea;
}

.board-loading-spinner {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.14);
	border-top-color: #356ade;
	animation: board-spin 0.9s linear infinite;
}

.board-loading-title {
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.board-loading-copy {
	font-size: 0.92rem;
	line-height: 1.45;
	color: #d8ccaf;
}

.board-error-details {
	margin: 12px 0 0;
	padding: 12px 14px;
	max-width: 100%;
	overflow: auto;
	white-space: pre-wrap;
	text-align: left;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #f4f1ea;
	font-size: 0.88rem;
	line-height: 1.4;
}

@keyframes board-spin {
	to {
		transform: rotate(360deg);
	}
}

.board-intro {
	max-width: 900px;
	margin-bottom: 18px;
	padding: 0;
	color: #f4f1ea;
}

.board-intro-meta {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 8px;
}

.board-intro-meta .board-updated {
	color: #d8ccaf;
	font-size: 0.92rem;
}

.board-refresh {
	padding: 0.35rem 0.6rem;
	border-radius: 8px;
	background: rgba(255,255,255,0.06);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.08);
	cursor: pointer;
	font-weight: 600;
}

.board-refresh:hover {
	background: rgba(255,255,255,0.09);
}

.board-kicker {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.74);
	margin-bottom: 4px;
}

.board-intro h2 {
	margin: 0 0 6px 0;
	font-size: 2rem;
}

.board-intro p {
	max-width: 34rem;
}

@media (min-width: 50em) {
	.board-intro {
		margin-bottom: 24px;
	}
}

.board-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 18px 0;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
}

.board-lists {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 8px;
	scroll-snap-type: x proximity;
}

.board-list {
	flex: 0 0 320px;
	min-width: 320px;
	max-width: 320px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
	scroll-snap-align: start;
}

.board-list-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 10px;
}

.board-list-header h3 {
	font-size: 1.1rem;
}

.board-list-empty,
.board-empty {
	padding: 14px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.85);
}

.board-card {
	background: rgba(16, 18, 24, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 0;
	margin-bottom: 10px;
	overflow: visible;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.board-card:hover,
.board-card:focus-within {
	transform: translateY(-3px) scale(1.015);
	box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
	border-color: rgba(53, 106, 222, 0.55);
}

.board-card-open {
	appearance: none;
	border: 0;
	background: transparent;
	width: 100%;
	border-radius: inherit;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
	padding: 12px;
	cursor: pointer;
	color: #f4f1ea;
	font: inherit;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.board-card-open:hover,
.board-card-open:focus-visible {
	background: rgba(53, 106, 222, 0.12);
	outline: none;
}

.board-card-open:active {
	transform: translateY(1px);
}

.board-card-title {
	font-weight: bold;
	font-size: 1rem;
	margin: 0;
	line-height: 1.35;
	order: 2;
}

.trello-card-fields {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4px 10px;
	margin: 10px 0 0 0;
}

.trello-card-fields dt {
	font-weight: bold;
	color: #5a4527;
}

.trello-card-fields dd {
	margin: 0;
	color: #2d2417;
}

.trello-card-empty {
	font-style: italic;
	color: #6f6657;
	margin-top: 8px;
}

.board-card-warning {
	margin-top: 8px;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #f0e6d4;
}

.board-card-modal-section {
	display: grid;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.board-card-modal-section h4 {
	margin: 0;
	font-size: 0.98rem;
	color: #f4f1ea;
}

.board-card-details {
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	background: #faf6ee;
	border: 1px solid #e5d6b9;
}

.board-card-details summary {
	cursor: pointer;
	font-weight: bold;
}

.board-card-detail-panel {
	margin-top: 10px;
	display: grid;
	gap: 10px;
}

.board-card-raw {
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
}

.board-card-raw pre {
	white-space: pre-wrap;
	word-break: break-word;
	margin: 6px 0 0 0;
	font-family: inherit;
	font-size: 0.88rem;
	color: #e6dcc8;
}

.board-create-trigger,
.board-edit-trigger {
	display: inline-flex;
	align-self: start;
	margin: 6px 0 10px 0;
	padding: 0.9rem 1.1rem;
	border: 1px solid rgba(53, 106, 222, 0.85);
	background: rgb(53, 106, 222);
	border-radius: 8px;
	cursor: pointer;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.board-create-trigger:hover,
.board-edit-trigger:hover {
	background: #2159d3;
}

/* Floating schedule button bottom-left */
.floating-schedule {
	position: fixed;
	left: 1rem;
	bottom: 1.25rem;
	z-index: 60;
	border-radius: 999px;
	padding: 0.9rem 1.25rem;
	box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

@media (max-width: 640px) {
	.floating-schedule {
		left: 0.75rem;
		bottom: 0.9rem;
		padding: 0.7rem 1rem;
	}
}

.board-edit-modal {
	border: none;
	border-radius: 16px;
	padding: 0;
	max-width: min(920px, calc(100vw - 24px));
	width: 100%;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
	background: #11151c;
	color: #f4f1ea;
}

/* Center dialogs when shown */
.board-edit-modal[open] {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 80;
	max-height: calc(100vh - 48px);
	overflow: auto;
}

.board-edit-modal::backdrop {
	background: rgba(31, 24, 15, 0.7);
}

.board-edit-modal-shell {
	padding: 24px;
	display: grid;
	gap: 14px;
}

.board-edit-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.board-edit-modal-header h3 {
	font-size: 1.25rem;
	margin: 0;
}

.board-modal-close {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(53, 106, 222, 0.5);
	background: rgb(53, 106, 222);
	color: #fff;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
}

.board-edit-modal-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.board-modal-cancel {
	background: #2f3745 !important;
	border-color: rgba(255, 255, 255, 0.14) !important;
	color: #f4f1ea !important;
}

.board-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
	font-size: 0.85rem;
	color: #6d6150;
}

.board-card-edit,
.board-create {
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.board-create-top {
	padding: 0;
	margin: 12px 0 18px 0;
	background: transparent;
	border: 0;
}

.board-modal-note {
	padding: 10px 12px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #d8ccaf;
	font-size: 0.92rem;
}

.board-time-converter {
	display: grid;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.board-time-converter-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: end;
}

.board-time-converter-message {
	font-size: 0.9rem;
	color: #d8ccaf;
}

.board-converter-button {
	justify-self: start;
	padding: 0.6rem 0.9rem;
	border: 1px solid rgba(53, 106, 222, 0.85);
	background: rgb(53, 106, 222);
	color: #fff;
	border-radius: 8px;
	cursor: pointer;
}

.board-create-form {
	display: grid;
	gap: 12px;
}

.board-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.board-form-field {
	display: grid;
	gap: 6px;
	font-size: 0.95rem;
	color: #f4f1ea;
}

.board-form-field input,
.board-form-field select {
	width: 100%;
	padding: 0.6rem 0.8rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #f4f1ea;
	font: inherit;
	min-height: 44px;
	box-sizing: border-box;
}

.board-form-field input:focus,
.board-form-field select:focus {
	outline: 2px solid rgba(53, 106, 222, 0.45);
	outline-offset: 1px;
}

.board-card-edit summary {
	cursor: pointer;
	font-weight: bold;
	margin-bottom: 10px;
}

.board-create-form,
.board-edit-form,
.board-card-actions {
	display: grid;
	gap: 8px;
	margin-top: 10px;
}

.board-create-form label,
.board-edit-form label,
.board-card-actions label {
	width: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	text-align: left;
	margin: 0;
}

.board-create-form input,
.board-edit-form input,
.board-card-actions select {
	width: 100%;
	box-sizing: border-box;
}

.board-create-form button,
.board-edit-form button,
.board-card-actions button {
	justify-self: start;
	padding: 6px 12px;
	border: 1px solid rgba(53, 106, 222, 0.85);
	background: rgb(53, 106, 222);
	color: #fff;
	border-radius: 8px;
	cursor: pointer;
}

.board-card-actions .danger {
	background: #eb5a46;
	border-color: #c94a39;
	color: #fff;
}

/* two-column layout for modal subsections (labels + move) */
.board-modal-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

@media (max-width: 640px) {
	.board-modal-two-col {
		grid-template-columns: 1fr;
	}
}

.board-card-actions .ghost {
	background: #3a404c;
	border-color: rgba(255, 255, 255, 0.14);
	color: #f4f1ea;
}

.board-card-label-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 0;
	order: 1;
}

.private-flight .board-card-label-list .trello-label-badge {
	align-self: flex-start;
}

.private-flight-label {
	margin-right: 0;
}

.board-card-label-list-modal {
	margin-top: 8px;
}

.trello-label-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.78rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-weight: 600;
	line-height: 1.35;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.trello-label-badge.trello-label-green { background: #61bd4f; }
.trello-label-badge.trello-label-yellow { background: #f2d600; color: #2d2417; text-shadow: none; }
.trello-label-badge.trello-label-orange { background: #ff9f1a; }
.trello-label-badge.trello-label-red { background: #eb5a46; }
.trello-label-badge.trello-label-purple { background: #c377e0; }
.trello-label-badge.trello-label-blue { background: #0079bf; }
.trello-label-badge.trello-label-sky { background: #00c2e0; }
.trello-label-badge.trello-label-lime { background: #51e898; color: #2d2417; text-shadow: none; }
.trello-label-badge.trello-label-pink { background: #ff78cb; }
.trello-label-badge.trello-label-black { background: #344563; }
.trello-label-badge.trello-label-neutral { background: #b3bac5; color: #2d2417; text-shadow: none; }

.logo {
	width: 100%;
	height: 400px;
	/* The gradient layer must be declared BEFORE the url() layer */
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), 
						url('../images/logo.jpeg');
	background-size: cover;
	background-position: center;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

html {
	background-color: #2c3036;
	color: white;
}