/* Estilos para galería con SweetAlert2 */
.swal-gallery-popup {
    padding: 0 !important;
}

.swal-gallery-image {
    max-height: 70vh !important;
    object-fit: contain !important;
    border-radius: 8px;
}

.swal2-popup.swal-gallery-popup {
    width: 90% !important;
    max-width: 1200px !important;
}

.swal2-title {
    font-size: 1.2em !important;
    margin-bottom: 10px !important;
}

.swal2-actions {
    margin-top: 15px !important;
}

/* Mejorar botones de navegación */
.swal2-deny, .swal2-cancel {
    font-size: 14px !important;
    padding: 8px 16px !important;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .swal-gallery-popup {
        width: 95% !important;
    }
    
    .swal-gallery-image {
        max-height: 60vh !important;
    }
    
    .swal2-deny, .swal2-cancel {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}