.modal {
  display: none; /* 👈 IMPORTANTE */
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0,0,0,0.6);

  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}

.modal-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;

  /* 🔥 animación opcional */
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.close {
  float: right;
  font-weight: bold; 
  font-size: 24px;
  color:#000;
  cursor: pointer;
}

.close:hover{
opacity:0.6;
}

.dato {
  margin: 15px 0;
}

button.copiar {
  margin-top: 5px;
  padding: 6px 12px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button.copiar:hover {
  background: #0056b3;
}

.label {
  font-weight: 500;
  color: #000000;
  font-size: 14px;
  display: block;
}

.valor {
  font-weight: bold;
  font-size: 16px;
}