.bg-image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* Extra small (xs <576px) */

@media (max-width: 575.98px) {
	.bg-image {
		background-image: image-set(
			url("../../assets/img/bg-576@1x.webp") type("image/webp") 1x,
			url("../../assets/img/bg-576@1x.jpg") type("image/jpeg") 1x,
			url("../../assets/img/bg-576@2x.webp") type("image/webp") 2x,
			url("../../assets/img/bg-576@2x.jpg") type("image/jpeg") 2x
		);
	}
}

/* Small to medium (576px–991px) */

@media (min-width: 576px) and (max-width: 991.98px) {
	.bg-image {
		background-image: image-set(
			url("../../assets/img/bg-768@1x.webp") type("image/webp") 1x,
			url("../../assets/img/bg-768@1x.jpg") type("image/jpeg") 1x,
			url("../../assets/img/bg-768@2x.webp") type("image/webp") 2x,
			url("../../assets/img/bg-768@2x.jpg") type("image/jpeg") 2x
		);
	}
}

/* Large (992px and up) */

@media (min-width: 992px) {
	.bg-image {
		background-image: image-set(
			url("../../assets/img/bg-1200@1x.webp") type("image/webp") 1x,
			url("../../assets/img/bg-1200@1x.jpg") type("image/jpeg") 1x,
			url("../../assets/img/bg-1200@2x.webp") type("image/webp") 2x,
			url("../../assets/img/bg-1200@2x.jpg") type("image/jpeg") 2x
		);
	}
}

.floating-panel {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 0.5rem;
	padding: 2rem;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	max-width: 1440px;
	width: 100%;
	margin: 3rem;
}

.panel-wrapper {
	min-height: calc(100vh - 112px);
}

.truncate-clickable {
	display: inline-block;
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}

.truncate-clickable:focus {
	white-space: normal;
	overflow: visible;
	word-break: break-word;
	background: #f8f9fa;
	outline: none;
	z-index: 1;
	position: relative;
}

td a {
	text-decoration: none;
	color: var(--bs-primary);
	word-wrap: break-word;
	word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h5 {
	color: var(--bs-secondary);
}
