fichero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  min-height: 100vh;
  margin: 0;
}
ficha {
  display: flex;
  flex-direction: column;
  background-color: #1e1e1e;
  border-top: 5px solid #4caf50;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  gap: 12px;
}

ficha::before {
  content: "ID: " attr(id) " • Ingreso: " attr(fechaingreso);
  display: block;
  font-size: 0.85rem;
  color: #a5d6a7;
  text-align: right;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nombre,
apellido,
direccion {
  display: block;
  font-size: 1.1rem;
  line-height: 1.5;
}

nombre::before {
  content: "Nombre: ";
  font-weight: 600;
  color: #4caf50;
}

apellido::before {
  content: "Apellido: ";
  font-weight: 600;
  color: #4caf50;
}

direccion::before {
  content: "Dirección: ";
  font-weight: 600;
  color: #4caf50;
}
