<style>
	:root{
			--image-gallery-color-highlight: #3796b7;
	}
/* General Styles */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Small Overlay Styles */
.image-item {
    position: relative;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}
	
.image-item:hover {
    border-radius: 10px;
}

.small-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
		border-radius: 0px 0px 10px 10px;
	backdrop-filter: blur(10px);
}

/* Big Overlay Styles */
.big-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.big-overlay.active {
    opacity: 1;
    visibility: visible;
}

.big-overlay img {
    max-width: 90%;
    max-height: 70%;
    margin-bottom: 20px;
}

.overlay-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
		font-family: monospace;
    cursor: pointer;
    z-index: 1001;

}
	.overlay-arrow:hover,.overlay-arrow:focus{
			background-color: var(--image-gallery-color-highlight)
	}

.overlay-arrow.left {
    left: 20px;
}

.overlay-arrow.right {
    right: 20px;
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}
	.overlay-close:hover{
	color: var(--image-gallery-color-highlight);
		background-color:transparent;
	}

/* Big Overlay Info Container */
.big-overlay-info {
    color: white;
    display: flex;
		flex-direction: column;
    justify-content: space-between;
    width: 90%;
    padding: 10px 0;
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: 5%; 
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
	
/* No Images found Message */
.no-images-message {
		font-family: 'DM Sans';
		color: white;
		font-size: 32px;
		text-align: center;
	align-self: center;
}
	
.load-more-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.load-more-button:hover {
    background-color: #005d8a;
}


</style>