/* Estilo para la galería de fotos */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 10px;
    padding: 10px;
    justify-content: center;
}

.photo-container img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.photo-container img:hover {
    transform: scale(1.05);
}

#loader {
    width: 200px;
    height: 200px;
}


/* Botón de descarga */
.downloadButton {
    background-color: #e65616;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    border: 1px;
    border-color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.downloadButton:hover {
    background-color: #e65616;
}


/* Media query para dispositivos móviles */
@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

#loadingSpinner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

