
/* Galéria cím */
#galleryID {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

/* Alcím */
#alcim {
    text-align: center;
    color: #666;
    font-size: 18px;
}

/* Lista konténer */
/*
.downloadUL {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
*/
/* Képek */
.downloadContent {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
/*
.downFiles {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
*/

.downloadUL {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style-type: none;
  }
  
  .downloadUL li {
    flex: 1 1 200px;
    max-width: 250px;
  }
  
  .downFiles {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    object-fit: cover;
  }






/* Hover effekt */
.downloadContent:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Elválasztó vonal */
.downloadContent hr {
    margin: 10px auto;
    width: 50%;
    border: none;
    height: 2px;
    background: #ccc;
}

/* Üres állapot */
.downEmpty {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-top: 20px;
}

/* A modális alapértelmezetten rejtett */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Az eredeti méretű kép */
.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Bezáró ikon (X) */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
/* A modális alapértelmezetten rejtett */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Az eredeti méretű kép */
.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

/* Bezáró ikon (X) */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}


