@charset "utf-8";
/* CSS Document */

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 10px;
}

.gallery-container img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

#pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination {
    text-align: center;
    margin: 50px;
}

.pagination button {
    margin: 0 5px;
    padding: 8px 12px;
    background-color: #FFD484;
    font-size: 16px;
    cursor: pointer;
  border: none;
  border-radius: 4px;
}



.popup-overlay {
    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;
    z-index: 1000;
}

.popupface {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.popupface img {
    max-width: 100%;
    max-height: 80vh;
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    z-index: 1001;
}

.close-btn {
    top: -10px;
    right: 15px;
}

.prev-btn {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.next-btn {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
