#mapContainer {
	position:sticky;
	top:2rem;
	height:100%;
}
#map{
	height:600px;
	border-radius:5px;
}
#filter-buttons {
	flex-wrap:wrap;
	justify-content:center;
}
#filter-buttons .btn {
	color:white;
	margin-right:0.5rem;
	margin-bottom:0.25rem;
	min-width:150px;
}
#filter-buttons .btn.active{
	background-image: linear-gradient(45deg, #7b7b7b, #28d700);
}
#filter-buttons>.btn {
	flex:0 1 auto;
}
#filter-buttons>.btn div {
	width:100%;
}
.card {
	background-image: linear-gradient(176deg, #535353 80%, #333333);
}
.card a {
	color:#ffd4d4;
}

/* Container around image and overlay */
.image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 1rem;
}

/* Image styles */
.image-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Zoom effect on hover */
.image-wrapper:hover img {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Overlay styles */
#company-list .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 12px;
}

/* Show overlay on hover */
#company-list .image-wrapper:hover .overlay {
	opacity: 1;
}

/* Icon/text in overlay */
.overlay-text {
	color: #fff;
	font-size: 1.8rem;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.company-logo {
	object-fit: contain;
}

#company-list hr {
	margin-top: 0;
}
#company-list .card-body p {
	margin-bottom: 0;
}
#company-list .text-muted{
	margin-top:1rem;	
	color:#28d700!important;
	display:inline-block;
}
#company-list .description-arrow {
	border: 1px solid #fff;
    padding: 3px 10px;
    border-radius: 5px;
    margin-left: 5px;
}

#company-list .description-arrow i {
  transition: transform 0.25s; /* Apply transition directly to the <i> element */
}

#company-list .description-arrow.active i {
  transform: rotate(180deg); /* Rotate the icon when active */
}
.marker-pin {
	color: #3187cc !important;
}
.map-zoom-link {
	position:relative;
	display:inline-block;
	height:5px;
	width:5px;
	z-index:0;
}
.map-zoom-link span {
	position: absolute;
	background-color:white;
	top:6px;
	left:3px;
	width:100%;
	height:100%;
}
.map-zoom-link i {
	position: relative;
	z-index:1;
}