@charset "UTF-8";
/* Paleta y sistema visual tomados de bybtech.com.ar (WEB BYB/index.html):
   fondo negro, acento cian #00aeef, tarjetas "glass" con blur, botones
   píldora, tipografía Inter. Se reusa acá para que licencias.bybtech.com.ar
   se sienta parte del mismo sitio. */

:root {
  --byb-acento: #00aeef;
  --byb-acento-2: #3b82f6;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #000;
  color: #f1f5f9;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  display: block;
}

.byb-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 174, 239, .2);
}

.byb-navbar img {
  height: 34px;
}

.navbar-lic {
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 174, 239, .2);
}

.lic-col-cuit {
  white-space: nowrap;
}

.lic-col-texto {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lic-hero {
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 174, 239, .25);
  border-radius: 1.75rem;
  box-shadow: 0 20px 40px -12px rgba(0, 174, 239, .15);
}

.lic-card {
  background: rgba(15, 23, 42, .6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 174, 239, .2);
  border-radius: 1.75rem;
  box-shadow: 0 20px 40px -12px rgba(0, 174, 239, .12);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.lic-card .form-control {
  background: rgba(0, 0, 0, .7);
  border: 1px solid rgba(0, 174, 239, .4);
  color: #fff;
  border-radius: 1rem;
}

.lic-card .form-control:focus {
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border-color: var(--byb-acento);
  box-shadow: 0 0 8px rgba(0, 174, 239, .4);
}

.lic-card .form-label {
  color: #cbd5e1;
}

.btn-acento {
  background: linear-gradient(95deg, var(--byb-acento), var(--byb-acento-2));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 174, 239, .3);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-acento:hover {
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 174, 239, .5);
}

.btn-outline-acento {
  background: transparent;
  border: 1.5px solid var(--byb-acento);
  color: var(--byb-acento);
  border-radius: 40px;
  font-weight: 600;
}

.btn-outline-acento:hover {
  background: rgba(0, 174, 239, .1);
  color: var(--byb-acento);
}

.lic-precio {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
}

.lic-precio-sub {
  color: #94a3b8;
}

.lic-badge-activa {
  background-color: #16a34a;
  border-radius: 40px;
}

.lic-badge-vencida {
  background-color: #dc2626;
  border-radius: 40px;
}

.lic-badge-suspendida {
  background-color: #f59e0b;
  color: #111;
  border-radius: 40px;
}

.table-lic {
  background: rgba(15, 23, 42, .6);
  backdrop-filter: blur(8px);
  color: #f1f5f9;
  border-radius: 1.25rem;
  overflow: hidden;
}

/* Bootstrap 5.3 pinta las tablas con variables propias (--bs-table-bg,
   --bs-table-color, etc.) que le ganan a un simple "background" en
   .table-lic — hay que pisar esas variables, si no queda con fondo claro
   por default aunque el resto de la página esté oscura. */
.table-lic {
  --bs-table-bg: transparent;
  --bs-table-color: #f1f5f9;
  --bs-table-border-color: rgba(0, 174, 239, .15);
  --bs-table-striped-bg: rgba(255, 255, 255, .03);
  --bs-table-hover-bg: rgba(0, 174, 239, .08);
}

.table-lic th {
  border-color: rgba(0, 174, 239, .15);
  color: #94a3b8;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  background-color: transparent;
}

.table-lic td {
  border-color: rgba(0, 174, 239, .1);
  vertical-align: middle;
  background-color: transparent;
  font-size: .82rem;
}

.lic-token {
  display: inline-block;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.table-lic input.form-control {
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(0, 174, 239, .3);
  color: #fff;
  /* Los inputs de la tabla (email, cliente, fechas, etc.) quedaban muy bajitos
     comparado con el alto real de la fila — se agranda el campo escribible
     (padding/tipografía), sin tocar los anchos en px que ya vienen puestos a
     mano en cada <input style="width:...">. */
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .95rem;
}

a.byb-link {
  color: var(--byb-acento);
  text-decoration: none;
  font-weight: 600;
}

a.byb-link:hover {
  text-decoration: underline;
}
