/* 
 * ============================================================
 *  Million OF FRIENDS — Admin Panel Login Styles
 *  Prefijo: load-
 * ============================================================
 */

:root {
  --load-navy: #082359;
  --load-navy-dark: #081a40;
  --load-gold: #f2cd5e;
  --load-gold-dark: #d9a23d;
  --load-surface: #f2f2f2;
  --load-white: #ffffff;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background-color: var(--load-surface);
}

.load-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(242, 205, 94, 0.1),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(8, 35, 89, 0.1),
      transparent 40%
    );
}

.load-box {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 45px;
  position: relative;
  box-shadow: 0 50px 100px rgba(8, 26, 64, 0.15);
}

.load-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(8, 35, 89, 0.08);
  padding-bottom: 25px;
}
.load-logo {
  height: 70px;
}
.load-title {
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--load-navy-dark);
  margin: 0;
}
.load-subtitle {
  font-size: 0.88rem;
  color: #64748b;
  margin-top: 6px;
}

.load-form {
  display: grid;
  gap: 24px;
}
.load-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--load-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.load-input {
  width: 100%;
  padding: 15px 18px 15px 50px;
  background: #f1f5f9;
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 1rem;
  box-sizing: border-box;
}
.load-input:focus {
  outline: none;
  border-color: var(--load-gold);
}

.load-input-wrap {
  position: relative;
  margin-top: 8px;
}
.load-icon-main {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  display: flex;
  pointer-events: none;
}
.load-pass-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  padding: 0;
  transition: color 0.3s;
}
.load-pass-toggle:hover {
  color: var(--load-navy);
}

.load-options {
  display: flex;
  align-items: center;
  gap: 10px;
}
.load-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  cursor: pointer;
  font-size: 0.85rem;
}

.load-btn {
  background: var(--load-navy-dark);
  color: var(--load-gold);
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.load-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 26, 64, 0.2);
}
.load-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.load-footer {
  text-align: center;
  margin-top: 35px;
  color: #94a3b8;
  font-size: 0.82rem;
}

@media (max-width: 580px) {
  .load-box {
    padding: 30px;
    border-radius: 0;
    min-height: 100vh;
  }
}









/* 
 * ============================================================
 *  Million OF FRIENDS — Users List Styles
 *  Prefijo: liuser-
 *  Línea: 280
 * ============================================================
 */

/* Estructura Principal */
.liuser-container {
  padding: 30px;
}
.liuser-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(8, 26, 64, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

/* Cabecera del Listado */
.liuser-header {
  padding: 25px 30px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.liuser-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #081a40;
  margin: 0;
}
.liuser-badge-count {
  background: #edf2f7;
  color: #4a5568;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Barra de Búsqueda */
.liuser-search-container {
  padding: 20px 30px 0;
}
.liuser-search-wrap {
  position: relative;
}
.liuser-search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
.liuser-search-input:focus {
  outline: none;
  border-color: #082359;
  box-shadow: 0 10px 15px rgba(8, 35, 89, 0.1);
}
.liuser-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

/* Tabla de Datos */
.liuser-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.liuser-table {
  width: 100%;
  border-collapse: collapse;
}
.liuser-table th {
  padding: 15px 30px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #94a3b8;
  background: #fafbfc;
}
.liuser-table td {
  padding: 18px 30px;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

/* Elementos de Celda */
.liuser-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.liuser-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #082359;
}
.liuser-status-pill {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}
.liuser-status-pending {
  background: #fffbeb;
  color: #b45309;
}
.liuser-status-active {
  background: #f0fdf4;
  color: #15803d;
}
.liuser-status-expired {
  background: #fef2f2;
  color: #b91c1c;
}

/* Botón Ver - Retoque Profesional */
.liuser-btn-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #082359;
  background: #082359;
  color: #f2cd5e;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.liuser-btn-view:hover {
  background: #f2cd5e;
  color: #081a40;
  border-color: #f2cd5e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 205, 94, 0.3);
}
/* ── SECCIÓN RED ADMINISTRATIVA (dared-) ─────────────────────────── */
.dared-container {
    padding: 1rem;
    animation: fadeIn 0.5s ease-out;
    height: 100%;
}
.dared-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
}
.dared-header {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.dared-title {
    font-size: 1.5rem;
    font-weight: 850;
    color: #081a40;
    margin: 0;
}
.dared-search-wrap {
    position: relative;
    max-width: 400px;
    width: 100%;
}
.dared-search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}
.dared-search-input:focus {
    border-color: #f2cd5e;
    box-shadow: 0 0 0 4px rgba(242, 205, 94, 0.15);
}
.dared-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}
.dared-tree-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #fcfdfe;
}
#dared-svg-container {
    width: 100%;
    height: 100%;
    cursor: grab;
}
#dared-svg-container:active {
    cursor: grabbing;
}
.dared-node circle {
    fill: #fff;
    stroke-width: 2.5px;
    transition: all 0.3s;
}
.dared-node.status-active circle { stroke: #10b981; }
.dared-node.status-pending circle { stroke: #64748b; }
.dared-node.status-expired circle { stroke: #ef4444; }
.dared-node.is-root circle {
    stroke: #f2cd5e;
    stroke-width: 4px;
    filter: drop-shadow(0 0 8px rgba(242, 205, 94, 0.4));
}
.dared-node text {
    font-size: 11px;
    font-weight: 700;
    fill: #1e293b;
    pointer-events: none;
    text-transform: uppercase;
}
.dared-link {
    fill: none;
    stroke: #cbd5e1;
    stroke-width: 1.5px;
}
.dared-controls {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dared-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #081a40;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s;
}
.dared-btn:hover {
    background: #f8fafc;
    border-color: #f2cd5e;
    color: #f2cd5e;
    transform: translateY(-2px);
}
.dared-tooltip {
    position: absolute;
    padding: 15px;
    background: rgba(8, 26, 64, 0.95);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    min-width: 200px;
}
.dared-tooltip strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #f2cd5e;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}
.dared-legend {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 0.75rem;
    display: flex;
    gap: 15px;
}
.dared-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.dot-active { background: #10b981; }
.dot-pending { background: #64748b; }
.dot-expired { background: #ef4444; }

@media (max-width: 768px) {
    .dared-container { padding: 1rem; }
    .dared-card { height: calc(100vh - 120px); }
}

/* Modal de Perfil */
.limodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 26, 64, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.limodal--open {
  opacity: 1;
  visibility: visible;
}
.limodal-box {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}
.limodal-header {
  padding: 20px 30px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafbfc;
}

/* Botón de Cierre Estilizado */
.limodal-close {
  background: #fff;
  border: 1px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.limodal-close:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: rotate(90deg) scale(1.1);
}

.limodal-body {
  flex: 1;
  overflow-y: auto;
  padding: 40px;
}

/* Perfil Detallado */
.liprof-main {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.liprof-avatar {
  width: 140px;
  height: 140px;
  border-radius: 40px;
  background: #fff;
  border: 4px solid #f1f5f9;
  box-shadow: 0 15px 35px rgba(8, 35, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: #082359;
}

/* Estilos de Branding del Perfil */
.liprof-name {
  font-size: 2.2rem;
  font-weight: 900;
  color: #081a40;
  margin: 0;
  letter-spacing: -1px;
}
.liprof-email {
  font-size: 1.1rem;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
  display: block;
  overflow-wrap: break-word;
  word-break: break-all;
}

.liprof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.liprof-item {
  background: #f8fafc;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}
.liprof-item:hover {
  border-color: #082359;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 35, 89, 0.05);
}

.liprof-item label {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.liprof-item span {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.95rem;
}

/* Estilo para el Sponsor */
.liprof-sponsor {
  color: #082359 !important;
  font-weight: 850 !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.liprof-sponsor-id {
  color: #64748b;
  font-weight: 400;
  font-size: 0.85rem;
}

/* Tabla de Invitados */
.liprof-invited-h3 {
  font-size: 1.25rem;
  font-weight: 850;
  color: #081a40;
  margin-bottom: 25px;
  border-left: 5px solid #f2cd5e;
  padding-left: 15px;
}
.li-inv-table {
  width: 100%;
  border-collapse: collapse;
}
.li-inv-table th {
  text-align: left;
  padding: 15px;
  font-size: 0.8rem;
  color: #94a3b8;
  border-bottom: 2px solid #f1f5f9;
  text-transform: uppercase;
  font-weight: 800;
}
.li-inv-table td {
  padding: 15px;
  font-size: 0.95rem;
  border-bottom: 1px solid #f8fafc;
  color: #475569;
}

/* ── Notificaciones Toasts (Replicado de index) ────────────────── */
.notifi-container {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 40px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none;
}
.notifi-item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-start;
  padding: 16px 45px 16px 20px;
  overflow: hidden;
  pointer-events: auto;
  animation: notifi-slide-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid transparent;
}
.notifi-item.notifi-success {
  border-left-color: #2ecc71;
}
.notifi-item.notifi-error {
  border-left-color: #e74c3c;
}
.notifi-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.notifi-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #081a40;
  margin-bottom: 2px;
}
.notifi-msg {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}
.notifi-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
}
.notifi-progress-fill {
  height: 100%;
  background: currentColor;
  opacity: 0.3;
  animation: notifi-progress-anim linear forwards;
}
@keyframes notifi-progress-anim {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.notifi-hide {
  animation: notifi-slide-out 0.3s forwards;
}
@keyframes notifi-slide-in {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes notifi-slide-out {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* ── Modal de Confirmación ────────────────── */
.liconfirm-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(8, 26, 64, 0.2);
}
.liconfirm-icon {
  width: 60px;
  height: 60px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  margin: 0 auto 20px;
}
.liconfirm-title {
  font-size: 1.2rem;
  font-weight: 850;
  color: #081a40;
  margin-bottom: 15px;
}
.liconfirm-btns {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.liconfirm-btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.liconfirm-btn-no {
  background: #f1f5f9;
  color: #64748b;
}
.liconfirm-btn-yes {
  background: #ef4444;
  color: #fff;
}

/* ── Ajustes de Texto y Truncado ────────────────── */
.li-uppercase { text-transform: uppercase !important; }
.li-truncate-email {
  max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block;
}

/* Modal de Perfil Ampliado (85%) */
.limodal-box-wide { max-width: 85% !important; border-radius: 40px !important; }

/* Ajustes Responsive Usuarios y Modales */
@media (max-width: 900px) {
  .liuser-table thead {
    display: none;
  }
  .liuser-table tr {
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
  }
  .liuser-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border: none;
    text-align: right;
  }
  .liuser-table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.7rem;
  }

  .limodal-box {
    width: 95%;
    max-height: 95vh;
    border-radius: 20px;
  }
  .limodal-box-wide {
    width: 95% !important;
    max-width: 95% !important;
  }
  .liprof-main {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .liprof-avatar {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    font-size: 2.2rem;
  }
  .liprof-grid {
    grid-template-columns: 1fr;
  }
  .liprof-name {
    font-size: 1.6rem;
    word-break: break-word;
  }
  .liprof-email {
    font-size: 0.95rem;
  }
}

/* Botones de Acción en Modal */
.li-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.li-btn-tool {
  flex: 1;
  min-width: 140px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-transform: uppercase;
}
.li-btn-banks {
  background: #082359;
  color: #f2cd5e;
}
.li-btn-banks:hover {
  background: #0b2d72;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(8, 35, 89, 0.2);
}

.li-btn-suspend {
  background: #fef2f2;
  color: #ef4444;
  border: 1px solid #fee2e2;
}
.li-btn-suspend:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: translateY(-2px);
}

.li-btn-activate {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #dcfce7;
}
.li-btn-activate:hover {
  background: #15803d;
  color: #fff;
  border-color: #15803d;
  transform: translateY(-2px);
}

/* Estilos para Cuentas Bancarias */
.li-bank-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.2s;
}
.li-bank-card:hover {
  border-color: #082359;
  background: #f8fafc;
}
.li-bank-card--principal {
  border-left: 5px solid #f2cd5e;
}

.li-bank-name {
  font-weight: 850;
  color: #081a40;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.li-bank-num {
  font-family: monospace;
  font-size: 1.1rem;
  color: #082359;
  font-weight: bold;
}
.li-bank-titular {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.li-bank-main-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff9db;
  color: #fab005;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
}

/* Modal de Bancos - Estilo Diferenciado (Dark Glass) */
.limodal-box-banks {
  background: linear-gradient(135deg, #081a40 0%, #082359 100%) !important;
  color: white !important;
  box-shadow: 0 50px 100px rgba(0,0,0,0.4) !important;
}
.limodal-box-banks .limodal-header { 
  background: rgba(255,255,255,0.03) !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; 
}
.limodal-box-banks h2, .limodal-box-banks p { color: white !important; }
.limodal-box-banks .limodal-close { background: rgba(255,255,255,0.1); border: none; color: white; }
.limodal-box-banks .li-bank-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.limodal-box-banks .li-bank-name, .limodal-box-banks .li-bank-num { color: white; }
.limodal-box-banks .li-bank-titular { color: rgba(255,255,255,0.6); }

/* Ajustes Responsive Avanzados Modales */
@media (max-width: 768px) {
  .limodal-body { padding: 20px; }
  .li-modal-actions { flex-direction: column; }
  .liprof-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .limodal-box-banks .li-bank-num { font-size: 1.1rem !important; }
}

/* Botón Eliminar Banco */
.li-bank-delete {
  position: absolute; top: 15px; right: 15px; background: #fee2e2; color: #ef4444; border: none;
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.li-bank-delete:hover { background: #ef4444; color: #fff; transform: scale(1.1); }
.li-bank-card--principal .li-bank-delete { right: 80px; }

/* 
 * ============================================================
 *  Million OF FRIENDS — Vinculados (Aliados) Styles
 *  Prefijo: dasvin-
 *  Línea: 850
 * ============================================================
 */

.dasvin-container {
    padding: 30px;
}
.dasvin-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(8, 26, 64, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.dasvin-header {
    padding: 25px 30px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafbfc;
}
.dasvin-title {
    font-size: 1.25rem;
    font-weight: 850;
    color: #081a40;
    margin: 0;
}
.dasvin-table-wrap {
    width: 100%;
    overflow-x: auto;
}
.dasvin-table {
    width: 100%;
    border-collapse: collapse;
}
.dasvin-table th {
    padding: 15px 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    background: #fafbfc;
    text-align: left;
}
.dasvin-table td {
    padding: 18px 30px;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}
.dasvin-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.dasvin-badge-plus { background: #fef9c3; color: #854d0e; }
.dasvin-badge-free { background: #f1f5f9; color: #475569; }
.dasvin-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0f4ff;
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #1e40af;
}

.dasvin-btn-add {
    background: #082359;
    color: #f2cd5e;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.dasvin-btn-add:hover {
    background: #f2cd5e;
    color: #081a40;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 205, 94, 0.3);
}

/* Responsive Dasvin Table */
@media (max-width: 900px) {
    .dasvin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .dasvin-header > div {
        width: 100%;
        justify-content: space-between;
    }
    .dasvin-table thead {
        display: none;
    }
    .dasvin-table tr {
        display: block;
        margin-bottom: 20px;
        padding: 15px;
        background: #f8fafc;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }
    .dasvin-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border: none;
        text-align: right;
    }
    .dasvin-table td::before {
        content: attr(data-label);
        font-weight: 800;
        color: #94a3b8;
        text-transform: uppercase;
        font-size: 0.7rem;
        margin-right: 15px;
    }
    .dasvin-table td:first-child {
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 10px;
        padding-bottom: 15px;
    }
}

/* 
 * ============================================================
 *  DASVIN — Modal & Empty State
 * ============================================================
 */
.dasvin-modal-search {
    width: 100%;
    padding: 14px 18px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: all 0.3s;
}
.dasvin-modal-search:focus {
    border-color: #082359;
    box-shadow: 0 0 0 4px rgba(8, 35, 89, 0.05);
    outline: none;
}
.dasvin-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.dasvin-user-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-top: 15px;
    margin-bottom: 25px;
}
.dasvin-user-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s;
}
.dasvin-user-item:hover { background: #f8fafc; }

.dasvin-email-wrap {
    max-width: 220px;
    word-break: break-all;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dasvin-btn-view {
    background: transparent;
    color: #082359;
    border: 1.5px solid #082359;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.dasvin-btn-view:hover {
    background: #082359;
    color: #f2cd5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(8, 35, 89, 0.2);
}

.dasvin-btn-delete {
    background: transparent;
    color: #ef4444;
    border: 1.5px solid #ef4444;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.dasvin-btn-delete:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.dasvin-btn-icon-add {
    background: #f2cd5e;
    color: #081a40;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
}
.dasvin-btn-icon-add:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 10px rgba(242, 205, 94, 0.3);
}

.dasvin-user-item.selected {
    background: #f0f4ff;
    border-left: 5px solid #082359;
}
.dasvin-user-item .dasvin-check {
    color: #082359;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dasvin-user-item.selected .dasvin-check {
    opacity: 1;
    transform: scale(1);
}

.dasvin-radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    background: #fafbfc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}
.dasvin-radio-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.dasvin-empty-wrap {
    text-align: center;
    padding: 80px 30px;
}
.dasvin-empty-icon {
    margin-bottom: 25px;
    color: #082359;
    opacity: 0.15;
    animation: dasvin-float 3s infinite ease-in-out;
}
@keyframes dasvin-float {
    0%, 100% { transform: translateY(0) scale(1.0); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@media (max-width: 600px) {
    .dasvin-radio-group { flex-direction: column; gap: 15px; }
}

.dasvin-select-root {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 30px 6px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.liprof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.liprof-section {
    background: #fff;
    border-radius: 20px;
    padding: 0;
}
.liprof-avatar-circle {
    background: #082359;
    color: #f2cd5e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

@media (max-width: 900px) {
    .liprof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Colores para el Selector de Raíz */
.dasvin-select-root[data-status="principal"] {
    background-color: #ecfdf5;
    border-color: #10b981;
    color: #047857;
}
.dasvin-select-root[data-status="regular"] {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

/* Modal de Confirmación Custom */
.conf-modal-icon {
    width: 70px;
    height: 70px;
    background: #fff1f2;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.conf-modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.conf-btn-cancel {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
}
.conf-btn-delete {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #ef4444;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

/* 
 * ============================================================
 *  DASCONFIG — Settings & Configuration (Unified Group)
 * ============================================================
 */
.dasconfig-container {
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.dasconfig-header {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.dasconfig-title {
    font-size: 2.2rem;
    font-weight: 850;
    color: #081A40;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.dasconfig-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.dasconfig-main-card {
    background: #fff;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 40px 100px rgba(8, 26, 64, 0.05);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.dasconfig-section {
    padding: 45px;
}

.dasconfig-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.dasconfig-card-icon {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #082359;
    flex-shrink: 0;
}

.dasconfig-card-title {
    font-size: 1.5rem;
    font-weight: 850;
    color: #081A40;
}

.dasconfig-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
    margin: 0 45px;
}

.dasconfig-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.dasconfig-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dasconfig-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.dasconfig-input {
    width: 100%;
    padding: 18px 22px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 18px;
    color: #081A40;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.dasconfig-input:focus {
    background: #fff;
    border-color: #082359;
    outline: none;
    box-shadow: 0 0 0 6px rgba(8, 35, 89, 0.04);
}

.dasconfig-input-icon {
    position: absolute;
    right: 22px;
    color: #94a3b8;
    font-weight: 800;
    font-size: 0.9rem;
}

.dasconfig-bank-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dasconfig-tag {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.dasconfig-btn-save {
    background: #082359;
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 18px;
    font-weight: 850;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(8, 35, 89, 0.15);
}

.dasconfig-btn-save:hover {
    background: #081A40;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(8, 35, 89, 0.25);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .dasconfig-section { padding: 35px 25px; }
    .dasconfig-divider { margin: 0 25px; }
    .dasconfig-form-grid { grid-template-columns: 1fr; }
    .dasconfig-btn-save { width: 100%; }
}

/* ── Modales Premium (limodal-*) ───────────────────────────── */
.limodal {
    position: fixed;
    inset: 0;
    background: rgba(8, 26, 64, 0.45);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
}

.limodal--open {
    opacity: 1;
    pointer-events: auto;
}

.limodal-content {
    background: #fff;
    border-radius: 32px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2);
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.limodal--open .limodal-content {
    transform: translateY(0) scale(1);
}

.limodal-header {
    padding: 35px 40px;
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.limodal-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #081A40;
    letter-spacing: -0.5px;
}

.limodal-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 5px;
    font-weight: 500;
}

.limodal-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #64748b;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.limodal-close:hover {
    background: #ef4444;
    color: #fff;
    transform: rotate(90deg);
}

.limodal-body {
    padding: 40px;
}

.limodal-footer {
    padding: 30px 40px;
    background: #f8fafc;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Dashboard Vinculados extra fixes */
.dasvin-btn-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.dasvin-btn-delete:hover {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* ── Sistema de Notificaciones Premium ────────────────────── */
#notifi-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.notifi-toast {
    background: #fff;
    padding: 18px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 320px;
    max-width: 450px;
    border-left: 6px solid #e2e8f0;
    pointer-events: auto;
    animation: notifiIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.notifi-toast--success { border-left-color: #10b981; }
.notifi-toast--error   { border-left-color: #ef4444; }
.notifi-toast--warning { border-left-color: #f59e0b; }
.notifi-toast--info    { border-left-color: #3b82f6; }

.notifi-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notifi-toast--success .notifi-icon { background: #ecfdf5; color: #10b981; }
.notifi-toast--error .notifi-icon   { background: #fef2f2; color: #ef4444; }
.notifi-toast--warning .notifi-icon { background: #fffbeb; color: #f59e0b; }
.notifi-toast--info .notifi-icon    { background: #eff6ff; color: #3b82f6; }

.notifi-icon svg { width: 20px; height: 20px; }

.notifi-content { flex: 1; }
.notifi-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: #081A40;
}
.notifi-message {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 2px;
    font-weight: 500;
}

.notifi-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.2s;
}
.notifi-close:hover { color: #64748b; }

@keyframes notifiIn {
    from { opacity: 0; transform: translateX(50px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes notifiOut {
    to { opacity: 0; transform: translateX(50px) scale(0.9); }
}




















/* ── Premium Profile Styles (dasprof-*) ───────────────────── */

.dasprof-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dasprof-banner {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #082359, #F2CD5E);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px 40px;
}

.dasprof-banner-overlay {
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.dasprof-user-float {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 2;
}

.dasprof-avatar {
    width: 100px;
    height: 100px;
    background: #fff;
    color: #082359;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 900;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.dasprof-user-info {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.dasprof-name {
    font-size: 1.8rem;
    font-weight: 950;
    margin-bottom: 2px;
}

.dasprof-role {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.dasprof-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.dasprof-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(8, 35, 89, 0.05);
    border: 1px solid #f1f5f9;
}

.dasprof-card-title {
    font-size: 1.1rem;
    font-weight: 850;
    color: #081A40;
    margin-bottom: 25px;
    display: block;
}

.dasprof-detail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dasprof-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dasprof-detail label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.dasprof-detail span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E293B;
}

.dasprof-tag {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    width: fit-content;
}

.dasprof-tag--active { background: #ecfdf5; color: #10b981; }

.dasprof-btn-light {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.dasprof-btn-light:hover { background: #fff; color: #082359; }

/* Tabs */
.dasprof-tabs {
    display: flex;
    gap: 25px;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 30px;
}

.dasprof-tab {
    padding: 12px 10px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.dasprof-tab--active {
    color: #082359;
}

.dasprof-tab--active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #082359;
    border-radius: 10px;
}

/* Form Styles */
.dasprof-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dasprof-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dasprof-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #081A40;
}

.dasprof-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.95rem;
    color: #475569;
    font-family: inherit;
}

.dasprof-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 35px 0;
}

/* Security Box */
.dasprof-security-box {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(8, 35, 89, 0.04);
}

.dasprof-sec-icon {
    width: 65px;
    height: 65px;
    background: #ecf0f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #082359;
    flex-shrink: 0;
    margin-bottom: 5px;
    box-shadow: inset 0 3px 10px rgba(8, 35, 89, 0.05);
}

.dasprof-sec-icon svg { width: 28px; height: 28px; }

.dasprof-sec-text h4 { font-size: 1.15rem; color: #081A40; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.3px; }
.dasprof-sec-text p { font-size: 0.85rem; color: #64748b; font-weight: 500; line-height: 1.5; margin: 0; padding: 0 10px; }

.dasprof-btn-outline {
    background: #fff;
    border: 1.5px solid #082359;
    color: #082359;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dasprof-security-box .dasprof-btn-outline {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
}

.dasprof-btn-outline:hover { background: #082359; color: #fff; box-shadow: 0 5px 15px rgba(8, 35, 89, 0.2); }

/* Responsive */
@media (max-width: 1024px) {
    .dasprof-grid { grid-template-columns: 1fr; }
    .dasprof-banner { height: auto; padding: 40px 25px; flex-direction: column; align-items: flex-start; }
    .dasprof-avatar { width: 80px; height: 80px; font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .dasprof-form-row { grid-template-columns: 1fr; }
    .dasprof-security-box { flex-direction: column; text-align: center; padding: 20px 15px; }
    .dasprof-btn-outline { margin: 0; width: 100%; font-size: 0.8rem; padding: 10px 15px; }
    .dasprof-banner { padding: 30px 20px; text-align: center; align-items: center; }
    .dasprof-user-float { flex-direction: column; gap: 15px; }
    
    .limodal-content { width: 95% !important; margin: 10px auto !important; padding: 20px 15px !important; }
}




















/* ── Verify Admin Registration Styles (veryh-*) ─────────────── */

.veryh-body {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    margin: 0;
    padding: 20px;
}

.veryh-container {
    background: #ffffff;
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(8, 35, 89, 0.08);
    overflow: hidden;
    box-sizing: border-box;
}

.veryh-header {
    background: linear-gradient(135deg, #082359, #1a3a7a);
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
}

.veryh-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.veryh-title {
    font-size: 1.5rem;
    font-weight: 850;
    margin: 0 0 5px 0;
}

.veryh-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.veryh-content {
    padding: 30px;
}

.veryh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.veryh-form-row .veryh-form-group {
    margin-bottom: 0;
}

.veryh-form-group {
    margin-bottom: 20px;
}

.veryh-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #081A40;
    margin-bottom: 8px;
}

.veryh-input {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #475569;
    font-family: inherit;
    transition: all 0.3s;
    box-sizing: border-box;
}

.veryh-input:focus {
    outline: none;
    border-color: #082359;
    box-shadow: 0 0 0 3px rgba(8, 35, 89, 0.1);
}

.veryh-input-wrap {
    position: relative;
}

.veryh-pass-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    padding: 0;
    transition: color 0.3s;
}

.veryh-pass-toggle:hover {
    color: #082359;
}

.veryh-btn {
    width: 100%;
    background: #082359;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.veryh-btn:hover {
    background: #1a3a7a;
    transform: translateY(-2px);
}

.veryh-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.veryh-alert {
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.veryh-alert--error {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fee2e2;
}

.veryh-alert--success {
    background: #ecfdf5;
    color: #10b981;
    border: 1px solid #d1fae5;
}

/* Password strength indicators */
.veryh-pwd-reqs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: #f1f5f9;
    border-radius: 12px;
}

.veryh-req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    transition: all 0.3s;
}

.veryh-req-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s;
}

.veryh-req-item.active {
    color: #10b981;
}

.veryh-req-item.active .veryh-req-icon {
    background: #10b981;
    color: #fff;
}

.veryh-match-msg {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}
.veryh-match-msg.error {
    color: #ef4444;
    display: block;
}
.veryh-match-msg.success {
    color: #10b981;
    display: block;
}

/* Responsive updates for verify_admin.php */
@media (max-width: 480px) {
    .veryh-container {
        border-radius: 15px;
    }
    .veryh-header {
        padding: 30px 20px;
    }
    .veryh-content {
        padding: 20px;
    }
    .veryh-form-row {
        grid-template-columns: 1fr;
    }
    .veryh-pwd-reqs {
        grid-template-columns: 1fr;
    }
}

/* 
 * ============================================================
 *  Million OF FRIENDS — Pagos Pendientes Empresa
 *  Prefijo: pagopendi-
 * ============================================================
 */
.pagopendi-container {
    padding: 30px;
}
.pagopendi-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}
.pagopendi-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #081a40;
    margin: 0;
}
.pagopendi-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(8, 26, 64, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.pagopendi-table-wrap {
    width: 100%;
    overflow-x: auto;
}
.pagopendi-table {
    width: 100%;
    border-collapse: collapse;
}
.pagopendi-table th {
    padding: 15px 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    background: #fafbfc;
    text-align: left;
}
.pagopendi-table td {
    padding: 18px 30px;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.pagopendi-status {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    background: #fffbeb;
    color: #b45309;
    text-transform: uppercase;
    display: inline-block;
}
.pagopendi-btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #082359;
    color: #f2cd5e;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    flex-shrink: 0;
}
.pagopendi-btn-view:hover {
    background: #f2cd5e;
    color: #082359;
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(242, 205, 94, 0.4);
}

.pagopendi-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    color: #fff;
    flex-shrink: 0;
}
.pagopendi-btn-accept {
    background: #10b981;
}
.pagopendi-btn-accept:hover {
    background: #059669;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}
.pagopendi-btn-reject {
    background: #ef4444;
}
.pagopendi-btn-reject:hover {
    background: #dc2626;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}
.pagopendi-empty {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-weight: 600;
}
.pagopendi-wait {
    color: #94a3b8;
    font-style: italic;
    font-size: 0.85rem;
}

/* Modal */
.pagopendi-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(8, 26, 64, 0.6); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}
.pagopendi-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.pagopendi-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ef4444;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
    z-index: 10;
}
.pagopendi-close:hover {
    background: #dc2626;
    transform: scale(1.1);
}
.pagopendi-file-viewer {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    min-height: 400px;
}
.pagopendi-file-viewer img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    object-fit: contain;
}
.pagopendi-file-viewer iframe {
    width: 100%;
    height: 70vh;
    border: none;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .pagopendi-table thead {
        display: none;
    }
    .pagopendi-table tr {
        display: block;
        margin-bottom: 20px;
        padding: 20px;
        background: #f8fafc;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
    }
    .pagopendi-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border: none;
        text-align: right;
        font-size: 0.85rem;
    }
    .pagopendi-table td::before {
        content: attr(data-label);
        font-weight: 800;
        color: #94a3b8;
        text-transform: uppercase;
        font-size: 0.7rem;
        margin-right: 15px;
        text-align: left;
    }
    .pagopendi-table td:last-child {
        border-top: 1px solid #e2e8f0;
        padding-top: 15px;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .pagopendi-container {
        padding: 15px;
    }
    .pagopendi-modal-content {
        width: 95%;
        padding: 15px;
    }
    .pagopendi-file-viewer {
        min-height: 300px;
    }
}

/* Modal de Confirmación Premium */
.pagopendi-confirm-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 26, 64, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}
.pagopendi-confirm-content {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pagopendi-confirm-modal.active .pagopendi-confirm-content {
    transform: translateY(0);
}
.pagopendi-confirm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.pagopendi-confirm-icon.accept { background: #ecfdf5; color: #10b981; }
.pagopendi-confirm-icon.reject { background: #fef2f2; color: #ef4444; }

.pagopendi-confirm-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #081a40;
    margin-bottom: 15px;
}
.pagopendi-confirm-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.pagopendi-confirm-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.pagopendi-confirm-btn {
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}
.pagopendi-confirm-btn-cancel {
    background: #f1f5f9;
    color: #64748b;
}
.pagopendi-confirm-btn-cancel:hover { background: #e2e8f0; color: #475569; }

.pagopendi-confirm-btn-accept {
    background: #10b981;
    color: #fff;
}
.pagopendi-confirm-btn-accept:hover { background: #059669; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); }

.pagopendi-confirm-btn-reject {
    background: #ef4444;
    color: #fff;
}
.pagopendi-confirm-btn-reject:hover { background: #dc2626; box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3); }

/* --- SISTEMA UNIFICADO DE TABLAS DE PAGOS (adminpagos-) --- */
.adminpagos-container { padding: 30px; }
.adminpagos-header { margin-bottom: 30px; }
.adminpagos-title { font-size: 2rem; font-weight: 900; color: #081A40; display: flex; align-items: center; gap: 15px; }
.adminpagos-title::before { content: ''; width: 6px; height: 35px; background: #F2CD5E; border-radius: 10px; }

.adminpagos-card { background: #fff; border-radius: 30px; box-shadow: 0 20px 60px rgba(8, 26, 64, 0.05); overflow: hidden; border: 1px solid #f1f5f9; }
.adminpagos-table-wrap { overflow-x: auto; }
.adminpagos-table { width: 100%; border-collapse: collapse; min-width: 900px; }

.adminpagos-table th { background: #f8fafc; padding: 22px 15px; text-align: left; color: #64748b; font-weight: 800; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; border-bottom: 2px solid #f1f5f9; }
.adminpagos-table td { padding: 20px 15px; border-bottom: 1px solid #f8fafc; color: #334155; vertical-align: middle; }
.adminpagos-table tr:last-child td { border-bottom: none; }
.adminpagos-table tr:hover td { background: #fcfdfe; }

/* Status Badges */
.adminpagos-status { padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; display: inline-block; }
.adminpagos-status--pendiente { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.adminpagos-status--aprobado { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.adminpagos-status--rechazado { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }

/* Botones de Acción */
.adminpagos-btn-view { background: #081A40; color: #F2CD5E; border: none; padding: 10px 18px; border-radius: 12px; cursor: pointer; font-weight: 800; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.adminpagos-btn-view:hover { background: #05122e; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(8, 26, 64, 0.2); }

.adminpagos-btn-action { width: 42px; height: 42px; border-radius: 12px; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.adminpagos-btn-accept { background: #10b981; color: #fff; }
.adminpagos-btn-accept:hover { background: #059669; transform: rotate(10deg); }
.adminpagos-btn-reject { background: #ef4444; color: #fff; }
.adminpagos-btn-reject:hover { background: #dc2626; transform: rotate(-10deg); }

/* Modales */
.adminpagos-modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(8, 26, 64, 0.8); backdrop-filter: blur(10px); align-items: center; justify-content: center; }
.adminpagos-modal-content { background: #fff; padding: 30px; border-radius: 35px; width: 95%; max-width: 900px; position: relative; box-shadow: 0 30px 100px rgba(0,0,0,0.5); }
.adminpagos-close { position: absolute; top: 20px; right: 25px; font-size: 35px; cursor: pointer; color: #081A40; font-weight: 300; transition: 0.3s; }
.adminpagos-close:hover { color: #ef4444; }

@media (max-width: 900px) {
    .adminpagos-container { padding: 15px; }
    .adminpagos-table-wrap { overflow: visible; }
    .adminpagos-table { min-width: auto; }
    .adminpagos-table thead { display: none; }
    .adminpagos-table tr { display: block; margin-bottom: 25px; background: #fff; border-radius: 25px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; }
    .adminpagos-table td { display: flex; justify-content: space-between; align-items: center; border: none; text-align: right; padding: 12px 0; font-size: 0.9rem; }
    .adminpagos-table td::before { content: attr(data-label); font-weight: 800; color: #94a3b8; text-transform: uppercase; font-size: 0.65rem; letter-spacing: 1px; }
}
