/* Mensajes de error minimalistas */
.error-message {
  color: #b02a37;
  /* Rojo más suave */
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
/* Ícono de advertencia más sutil */
.error-message::before {
  content: '\26A0';
  /* ⚠️ */
  font-size: 1rem;
  color: #b02a37;
  opacity: 0.8;
}
/* Reducir la saturación del fondo */
input.is-invalid,
select.is-invalid {
  background-color: #fffdfd !important;
}
.card {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.card-header {
  font-weight: bold;
  font-size: 1.1rem;
}
.btn {
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
}
.btn-success {
  background-color: #28a745;
}
.btn-success:hover {
  background-color: #1e7e34;
}
.btn-primary {
  background-color: #007bff;
}
.btn-primary:hover {
  background-color: #0062cc;
}
.list-group-item {
  transition: all 0.3s ease-in-out;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #ffffff;
}
.list-group-item:hover {
  background: #f1f1f1;
}
.saldo-disponible {
  font-size: 3rem;
  font-weight: bold;
  color: #28a745;
}
.resumen-financiero {
  border-left: 5px solid #007bff;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.resumen-financiero h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 1rem;
}
#qrImage {
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  padding: 5px;
  border: 3px solid #007bff;
}
#qrTimer {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
}
#qrExpiraMsg {
  font-weight: bold;
  color: #0062cc;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated {
  animation: fadeIn 0.3s ease-in-out;
}
.welcome-banner {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.card-option {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.card-option:hover {
  transform: translateY(-5px);
}
.card-option .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 auto 15px;
}
.card-option .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2c3e50;
}
.card-option .text-muted {
  font-size: 0.9rem;
}
.card-option .btn-sm {
  margin-top: 10px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
}
