html, body {
    height: 100%;
    margin: 0;
} 


    .gallery-container {
        width: 80%;
        margin: 0 auto;
        padding: 20px;
        background-color: #e7e6e6; /* Light background to enhance contrast */
        border-radius: 10px; /* Rounded corners for the gallery container */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Soft shadow for depth */
        margin-bottom: 50px;
    }
    
    .gallery-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .gallery-table td {
        text-align: center;
        padding: 15px; /* Increased padding for better spacing */
        width: 25%;
        transition: transform 0.3s ease; /* Smooth hover effect */
    }
    
    .gallery-table td:hover {
        transform: scale(1.05); /* Slight zoom effect on hover */
    }
    
    .gallery-table img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for images */
        transition: transform 0.3s ease;
    }
    
    .gallery-table img:hover {
        transform: scale(1.03); /* Slight zoom effect on hover */
    }
    
    
    /* Custom styling for the gallery title */
    .gallery-title {
        text-align: left;
        margin-left: 20px;
        font-size: 25px; /* Slightly increased font size for better readability */
        color: #333;
        margin-bottom: 20px; /* Increased bottom margin */
        
        padding-left: 12px; /* Increased padding for better separation */
        font-weight: bold;
        font-family: 'Arial', sans-serif; /* Changed font for a cleaner look */
    }
    

    

/* Modal styling - No captions, image aligned to the left */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8); /* Background overlay */
    text-align: center;
    transition: opacity 0.3s ease;
}

/* Image aligned to the left in the modal */
.modal-content {
    width: 100%; /* Use 100% width for the container */
    max-width: 50%; /* Limit width for large screens */
    max-height: 80%; /* Ensure image doesn't overflow */
    margin: auto;
    display: block;
    position: absolute;
    top: 15%;
    border: none;
}


/* Remove caption completely */
.caption {
    display: none;
}

/* Modal close button */
.close {
    position: absolute;
    top: 0px;
    right: 25px;
    color: white;
    font-size: 35px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}



/* Prev/Next buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
