.mesa_alertas{
  --bg:#0b1220;
  --card:#111b2e;
  --muted:#9bb0d1;
  --text:#e8f0ff;
  --line:#223255;
  --accent:#4da3ff;
  --ok:#31d07f;
  --warn:#ffcc66;
  --bad:#ff6b6b;

  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:linear-gradient(180deg,#071022,#0b1220);
  padding:20px;
  border-radius:16px;
}

.mesa_alertas *{
  box-sizing:border-box;
}

/* TITULO */

.mesa_alertas h1{
  font-size:18px;
  margin:0 0 14px 0;
  color:#fff;
}

/* TOOLBAR */

.alertas_toolbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:14px;
}

.alertas_toolbar input,
.alertas_toolbar select{
  min-width:180px;
  padding:10px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#0b152b;
  color:var(--text);
  outline:none;
}

/* TABLA */

.alertas_tabla{
  width:100%;
  border-collapse:collapse;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
}

.alertas_tabla th,
.alertas_tabla td{
  padding:10px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:13px;
  vertical-align:top;
}

.alertas_tabla th{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
  background:#0b152b;
}

.alertas_tabla tr:hover{
  background:rgba(255,255,255,.03);
}

/* BADGES DE NIVEL */

.nivel{
  display:inline-block;
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  font-weight:700;
}

.nivel_nivel_1{
  
  color:#fff;
}

.nivel_nivel_2{
  
  color:#fff;
}

.nivel_nivel_3{
  
  color:#fff;
}

/* CELDAS */

.tipo{
  font-weight:600;
}

.mensaje{
  max-width:420px;
  word-break:break-word;
}

.fecha{
  white-space:nowrap;
  font-size:12px;
  color:var(--muted);
}

/* SIN RESULTADOS */

.sin_resultados{
  text-align:center;
  color:var(--muted);
  padding:16px;
  font-size:13px;
}