:root{
  --hdr-bg:#4a4a4a;
  --hdr-txt:#ffffff;
  --row-a:#ffffff;
  --row-b:#f1f1f1;
  --row-hover:#e2e2e2;
  --grid:#cfcfcf;
  --txt:#222;
}

.tabla-wrap{
  width: 100%;
  border: 1px solid var(--grid);
  border-radius: 4px;
  overflow: auto;
  background: #fff;
  
}

table.tabla-incidencias{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: var(--txt);
  min-width: 1000px;
 }

thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--hdr-bg);
  color: var(--hdr-txt);
  text-align: left;
  font-weight: 600;
  padding: 2px 2px;
  border-bottom: 1px solid #3a3a3a;
  white-space: nowrap;
   
}

tbody td{
  padding-left: 5px;
  border-bottom: 1px solid var(--grid);
  vertical-align: top;
}

tbody tr:nth-child(odd){
  background: var(--row-a);
}

tbody tr:nth-child(even){
  background: var(--row-b);
}

tbody tr{
  transition: background-color .15s ease, transform .12s ease, box-shadow .12s ease;
  
}

tbody tr:hover{
  background: var(--row-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.wrap{
  white-space: normal;
  word-break: break-word;
  min-width: 220px;
}

.c-tipo{ width: 60px; }
.c-incu{ width: 80px; text-align:center; }
.c-fecha{ width: 160px; white-space: nowrap; }
.c-centro{ width: 120px; white-space: nowrap; }
