/* TD Modals globales - confirmaciones y alertas modernas */
.td-global-modal-overlay{
  position:fixed;
  inset:0;
  z-index:2147483000;
  background:rgba(15,23,42,.58);
  backdrop-filter:blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.td-global-modal-overlay.show{display:flex;}
.td-global-modal-box{
  width:min(94vw,430px);
  background:#fff;
  color:#0f172a;
  border-radius:28px;
  box-shadow:0 28px 90px rgba(15,23,42,.30);
  border:1px solid rgba(219,234,254,.92);
  overflow:hidden;
  animation:tdGlobalModalIn .22s ease both;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
@keyframes tdGlobalModalIn{from{opacity:0;transform:translateY(12px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.td-global-modal-head{
  padding:22px 22px 10px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.td-global-modal-icon{
  width:52px;
  height:52px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  font-size:26px;
  flex:0 0 52px;
  box-shadow:0 16px 34px rgba(37,99,235,.24);
}
.td-global-modal-icon.warning{background:linear-gradient(135deg,#f59e0b,#f97316);box-shadow:0 16px 34px rgba(245,158,11,.24)}
.td-global-modal-icon.danger{background:linear-gradient(135deg,#dc2626,#f43f5e);box-shadow:0 16px 34px rgba(220,38,38,.24)}
.td-global-modal-title b{display:block;font-size:21px;line-height:1.12;font-weight:950;color:#0f172a;}
.td-global-modal-title small{display:block;margin-top:7px;color:#64748b;font-weight:750;line-height:1.38;}
.td-global-modal-body{padding:2px 22px 18px;color:#334155;font-size:15px;line-height:1.5;white-space:pre-wrap;}
.td-global-modal-actions{padding:0 22px 22px;display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.td-global-modal-actions.one{grid-template-columns:1fr;}
.td-global-modal-btn{
  min-height:50px;
  border:0;
  border-radius:17px;
  padding:12px 14px;
  font-weight:950;
  cursor:pointer;
  font-size:14px;
  transition:.18s ease;
}
.td-global-modal-btn:hover{transform:translateY(-1px)}
.td-global-modal-btn.primary{background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;box-shadow:0 14px 28px rgba(37,99,235,.24)}
.td-global-modal-btn.light{background:#f8fafc;color:#334155;border:1px solid #e2e8f0;}
.td-global-modal-btn.danger{background:linear-gradient(135deg,#dc2626,#b91c1c);color:#fff;box-shadow:0 14px 28px rgba(220,38,38,.22)}
html.dark-theme .td-global-modal-box{background:#111827;color:#f8fafc;border-color:rgba(148,163,184,.18)}
html.dark-theme .td-global-modal-title b{color:#f8fafc}
html.dark-theme .td-global-modal-title small,html.dark-theme .td-global-modal-body{color:#cbd5e1}
html.dark-theme .td-global-modal-btn.light{background:#1e293b;color:#f8fafc;border-color:rgba(148,163,184,.22)}
@media(max-width:520px){.td-global-modal-box{border-radius:24px}.td-global-modal-actions{grid-template-columns:1fr}.td-global-modal-head{padding:20px 18px 10px}.td-global-modal-body{padding-left:18px;padding-right:18px}.td-global-modal-actions{padding-left:18px;padding-right:18px}}


/* V76 identidad azul */
:root{--td-blue:#1565c0;--td-blue-dark:#0d47a1;--td-active:#16a34a;--td-inactive:#f59e0b;--td-danger:#dc2626;}
.btn-primary,.btn-success,.td-btn-primary,.td-action-primary{background:linear-gradient(135deg,var(--td-blue),var(--td-blue-dark))!important;border-color:var(--td-blue)!important;color:#fff!important;}
.badge-success,.text-success,.status-active{color:#166534!important;}
.badge-warning,.status-pending,.status-inactive{color:#92400e!important;}
