.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 εικόνες ανά σειρά */
    gap: 10px; /* Μικρότερο κενό μεταξύ των εικόνων */
    justify-items: center;
    padding: 10px;
    max-width: 800px; /* Περιορισμός του μεγέθους για καλύτερη στοίχιση */
    margin: 0 auto; /* Κεντράρισμα της γκαλερί */
}

.gallery img {
    width: 140px; /* Μικρότερες εικόνες για μείωση του κενού */
    height: 140px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    border-radius: 8px;
}

.gallery img:hover {
    transform: scale(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
}
.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.prev { left: 20px; }
.next { right: 20px; }