#sucessMgs {
    display: none !important;
    background-color: #ccffcc;
	font-size: 30px;
    padding: 30px 0;
}
a:link, a:visited, a:hover, a:active {
	color:#000;
	text-underline: none;
}
#sucessMgs.show {
    display: block !important;
}
.gallery-item {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    background: none;
    border: 0;
    border-radius: 0.5rem;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.05);
}

.gallery-item:focus-visible {
    outline: 3px solid #ffc800;
    outline-offset: 3px;
}

#galleryModalImage {
    max-height: 70vh;
    object-fit: contain;
}
#galleryModal .modal-header {
    position: relative;
}

#galleryModal .btn-close {
    position: absolute;
    right: 1rem;
}