.nav-scroll-wrapper {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

.nav-scroll-inner {
	min-width: max-content; /* keeps items from wrapping */
	display: inline-flex;
}

.nav-scroll-wrapper::-webkit-scrollbar {
	display: none; /* optional: hides scrollbar */
}
.nav-scroll-wrapper {
	position: relative;
	mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.mapboxgl-popup {
	max-width: 250px;
	font: 14px/1.5 "Helvetica Neue", Arial, sans-serif;
}

.mapboxgl-popup-content {
	background: #ffffff;
	color: #000000;
	padding: 10px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
    background-color: rgba(0,0,0, 0.05) !important
}

:root.dark table.dataTable thead > tr > th.dt-orderable-asc:hover,
:root.dark table.dataTable thead > tr > th.dt-orderable-desc:hover,
:root.dark table.dataTable thead > tr > td.dt-orderable-asc:hover,
:root.dark table.dataTable thead > tr > td.dt-orderable-desc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-asc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > th.dt-orderable-desc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-asc:hover,
:root[data-bs-theme=dark] table.dataTable thead > tr > td.dt-orderable-desc:hover {
    background-color: rgba(255, 255, 255, 0.05) !important
}

body .offcanvas.offcanvas-lg {
	width: 800px;
}

.form-check .form-check-input {
	border: 1px solid #666666  !important;
}

.loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Make sure the tab content container is relative */
.tab-content {
	position: relative;
	min-height: 200px; /* Set minimum height for loading area */
}

.loading-content {
	text-align: center;
	color: white;
}

.product-card, .product-card .product-card-img {
    position:relative
}

.product-card .product-card-img:hover .product-img-hover {
    opacity:1
}

.product-card .product-card-img .product-card-btn {
    bottom: 0;
    margin: 12px;
    opacity: 0;
    position: absolute;
    right: 0;
    transform: translateY(5px);
    transition: opacity .2s ease-in-out, transform .2s ease-in-out, visibility .2s ease-in-out;
    visibility:hidden
}

.product-card .product-card-img .product-img-hover {
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition:opacity .6s ease-in-out
}

.product-card .product-heading {
    background: linear-gradient(90deg, currentColor, currentColor) 0 min(100%, 1.2lh) /0 2px no-repeat;
    font-weight: 400;
    padding-bottom: 2px;
    transition:background-size .3s ease-in-out
}

.product-card:hover .product-card-btn {
    opacity: 1;
    transform: translateY(0);
    visibility:visible
}

.product-card:hover .product-heading {
    background-size: 100% 2px;
    text-decoration:none
}
/* Custom table-secondary (BS 5.4 style) */
.table-secondary,
.table-secondary > th,
.table-secondary > td {
	background-color: rgb(226, 227, 229) !important;
}

/* Make sure text contrast is okay */
.table-secondary,
.table-secondary > th,
.table-secondary > td {
	color: inherit;
}
.symbol {
	position: relative; /* contain the overlay */
	display: inline-block;
}

.symbol-overlay {
	position: absolute;
	inset: 0; /* shorthand: top:0; right:0; bottom:0; left:0 */
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem; /* space between icons */
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 0.5rem; /* match rounded corners of img */
	pointer-events: none;
}

.symbol:hover .symbol-overlay {
	opacity: 1;
	pointer-events: auto;
}

.symbol-overlay .symbol-tool {
	font-size: 2rem; /* make icons bigger */
	color: #fff;
}
