/* 🔲 QR junto al botón de descarga */


.qr-image {
  width: 50px !important;
  height: 50px !important;
  margin-left: 10px;
  border-radius: 5px;
  border: 2px solid #0E3786;
  transition: transform 0.3s ease;
}

.qr-image:hover {
  transform: scale(5.42) !important;
}

/* 📱 Responsive: QR más pequeño en móvil */
@media (max-width: 768px) {
  .qr-image {
    width: 80px;
    height: 80px;
    margin-top: 1rem;
  }
}