.wsba-form-group {
    margin-bottom: 1rem;
}

.wsba-form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.wsba-form-group input,
.wsba-form-group select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.wsba-cuenta strong {
    font-weight: 400;
    color: #666;
}
.wsba-cuenta {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 0 4px rgba(0,0,0,0.04);
    font-size: 0.95rem;
    line-height: 1.4;
    color: inherit;
    font-family: inherit;
    margin-bottom: 1rem;
}
.wsba-secondary-button {
    display: inline-block !important;
    background: rgba(0, 69, 89, 0.08) !important;
    border: 1px solid rgba(0, 69, 89, 0.2) !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    color: #004559 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.wsba-secondary-button:hover {
    background: rgba(0, 69, 89, 0.15) !important;
    color: #001A33 !important;
    border-color: rgba(0, 69, 89, 0.3) !important;
}

/* Estilos para el modal de edición */
#wsba-edit-modal .wsba-modal-content {
    background: white;
    padding: 2rem;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

#wsba-edit-modal h3 {
    margin-top: 0;
    color: #001A33;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
}

#wsba-edit-modal .wsba-form-group {
    margin-bottom: 1.2rem;
}

#wsba-edit-modal label {
    color: #004559;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

#wsba-edit-modal input, 
#wsba-edit-modal select {
    border: 1px solid #ddd;
    padding: 0.7rem;
    border-radius: 6px;
    width: 100%;
    font-size: 1rem;
}

#wsba-edit-modal input:focus, 
#wsba-edit-modal select:focus {
    border-color: #004559;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 69, 89, 0.1);
}

#wsba-edit-modal button[type="submit"] {
    background: #004559 !important;
    color: white !important;
    border: none !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    width: auto !important;
    font-size: 1rem !important;
}

#wsba-edit-modal button[type="submit"]:hover {
    background: #003040 !important;
}

#wsba-delete-btn {
    background: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
    padding: 0.8rem 1rem !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    width: auto !important;
    font-size: 0.9rem !important;
}

#wsba-delete-btn:hover {
    background: #f1bec1 !important;
}

#wsba-edit-cancel {
    background: none !important;
    border: none !important;
    color: #666 !important;
    padding: 0.5rem !important;
    font-size: 0.9rem !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 1rem !important;
}

#wsba-edit-cancel:hover {
    color: #333 !important;
}

.description {
    font-size: 0.85em;
    color: #666;
    margin-top: 0.3em;
}
.wsba-wrapper h3 {
    font-size: 1.2rem;
    color: #444;
    margin: 2rem 0 0.75rem;
    font-weight: 600;
}
.wsba-formulario-wrapper {
    margin-top: 2rem;
}
.wsba-numero-cuenta {
    font-weight: 600;
}
.wsba-reenvio-alert {
    display: block;
    font-weight: 300;
    color: #444;
    font-size: 12px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 4px;
    margin-top: 0.5rem;
    line-height: 1.3; /* <- Esto reduce la altura del texto */
}

#wsba-error {
    background: #fcebea !important;
    color: #cc1f1a !important;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 400;
}
.wsba-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
  position: relative;
}

.wsba-tab {
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  color: #001A33;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.wsba-tab:hover {
  color: #004559;
  background-color: rgba(237, 99, 0, 0.05);
}

.wsba-tab.active {
  color: #ED6300;
  font-weight: 600;
  background: white;
}

.wsba-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ED6300, #004559);
  border-radius: 3px 3px 0 0;
}

.wsba-tab-content {
  display: none;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wsba-tab-content.active {
  display: block;
}
.wsba-section-title {
  font-size: 1.2rem;
  color: #001A33;
  margin-bottom: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(237, 99, 0, 0.15);
}
.wsba-topes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.wsba-tope-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
  line-height: 1.4;
  color: inherit;
  font-family: inherit;
}

.wsba-tope-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wsba-tope-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: inherit;
  font-weight: 600;
}

.wsba-tope-card p {
  margin: 0.25rem 0;
  color: #333;
  font-weight: normal;
}
.wsba-tope-card strong {
  font-weight: 400;
  color: #666;
}
.wsba-cuentas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.wsba-cuenta-item {
  font-size: 0.95rem;
  margin: 0.25rem 0;
  font-weight: 600;
  font-family: inherit;
  color: #696969;
}

.wsba-cuenta-item .wsba-label {
  font-weight: normal; /* o 400 */
  color: inherit; /* mismo color que el valor */
}

.wsba-cuenta-item strong {
  font-weight: 400;
  color: #7a7a7a;
  font-family: inherit;
}
.bixxus-account-card {
  background-color: #fff !important;
  border-radius: 12px !important;
  border: 1px solid #e0e0e0 !important;
  padding: 18px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  font-family: inherit !important;
  color: #444 !important;
}

.bixxus-account-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Estilo para la tarjeta predeterminada */
.bixxus-account-card.is-default {
  background: linear-gradient(135deg, #fff8f2 0%, #fff0e5 100%) !important;
  border-color: #ED6300 !important;
  box-shadow: 0 4px 8px rgba(237, 99, 0, 0.15) !important;
}

.bixxus-account-row {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  line-height: 1.3;
}

.bixxus-account-label {
  font-weight: 500 !important;
  color: #666 !important;
  width: 40% !important;
  font-size: 14px !important;
}

.bixxus-account-value {
  font-weight: 600 !important;
  color: #333 !important;
  width: 60% !important;
  font-size: 15px !important;
}

.bixxus-account-actions {
  margin-top: 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-weight: 400 !important;
  font-family: inherit !important;
  border-top: 1px solid #f0f0f0 !important;
  padding-top: 15px !important;
}

.bixxus-account-actions a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.2s;
}

/* Botón para hacer cuenta predeterminada */
.wsba-make-default {
  color: #001A33 !important;
  background-color: rgba(0, 150, 136, 0.08) !important;
  border: 1px solid rgba(0, 150, 136, 0.2) !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
}

.wsba-make-default:hover {
  background-color: rgba(0, 150, 136, 0.15) !important;
  text-decoration: none !important;
  color: #00796b !important;
}

.wsba-delete-trigger {
  color: #001A33 !important;
  background-color: rgba(237, 99, 0, 0.08) !important;
  border: 1px solid rgba(237, 99, 0, 0.2) !important;
}

.wsba-delete-trigger:hover {
  background-color: rgba(237, 99, 0, 0.15) !important;
  text-decoration: none !important;
  color: #ED6300 !important;
}

/* Badge para cuenta predeterminada */
span.account-default-badge {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(0, 150, 136, 0.15) !important;
  color: #00796b !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 4px rgba(0, 150, 136, 0.1) !important;
  border: 1px solid rgba(0, 150, 136, 0.2) !important;
}

.account-default-badge:before {
  content: "✓" !important;
  margin-right: 6px !important;
  font-weight: bold !important;
}
.wsba-tope-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #4f4f4f;
}
.wsba-verification-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.wsba-code-input {
  flex-grow: 1;
  min-width: 60px;
  height: 34px;
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.wsba-verify-link {
  background: #004559;
  color: #ffffff !important;
  padding: 6px 16px;
  font-size: 13px;
  border: none;
  border-radius: 4px;
  height: 34px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 500;
}
.wsba-verify-link:hover {
  background: #006077;
}
.wsba-resend-btn {
  background: none;
  border: none;
  color: #0073aa;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  margin-top: 6px;
}
.wsba-resend-btn:hover {
  background-color: #ddd; /* un gris claro suave */
  color: #000;
  cursor: pointer;
}

.wsba-resend-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Estilos para los paneles de topes por banco */
.bixxus-panel-row {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.bixxus-panel-label {
  font-weight: 500;
  color: #666;
  width: 40%;
  font-size: 14px;
}

.bixxus-panel-value {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}
