#tblData td, #tblData th {
  border: 1px solid #ddd;
  padding: 10px;
}

#tblData th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #6C757D;
  color: white;
  font-size: 14px;
}

#tblData tr:hover {background-color:#E6E7E9;}


/* Contenedor de la paginación */
.pagination {
    display: flex;
    justify-content: center;
    padding: 1px;
    list-style: none;
}

/* Estilo general de los enlaces */
.pagination li {
    margin: 0 5px;
}

.pagination li a {
    text-decoration: none;
    color: #2d353c;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #2d353c;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

/* Hover en los enlaces */
.pagination li a:hover {
    background: #E6E7E9;
    color: #2d353c;
}

/* Página activa */
.pagination li.active a {
    background: #2d353c;
    color: white;
    border: 1px solid #2d353c;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #6C757D;
  border-color: #6C757D;
}


/* Botones deshabilitados */
.pagination li.disabled a {
    color: #aaa;
    border-color: #ccc;
    pointer-events: none;
    background: #f8f9fa;
}

.c-pill {
  align-items: center;
  font-family: "Open Sans", Arial, Verdana, sans-serif;
  font-weight: bold;
  font-size: 11px;
  display: inline-block;
  height: 100%;
  white-space: nowrap;
  width: auto;

  position: relative;
  border-radius: 100px;
  line-height: 1;
  overflow: hidden;
  padding: 0px 12px 0px 20px;
  text-overflow: ellipsis;
  line-height: 1.25rem;
  color: #595959;
  
    word-break: break-word;

  &:before {
    border-radius: 50%;
    content: '';
    height: 10px;
    left: 6px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    width: 10px;
  }
  
 
}

.c-pill--success {
  background: #b4eda0; }
  .c-pill--success:before {
    background: #6BC167; }
.c-pill--warning {
  background: #ffebb6; }
  .c-pill--warning:before {
    background: #ffc400; }
.c-pill--danger {
  background: #ffd5d1; }
  .c-pill--danger:before {
    background: #ff4436; }
.c-pill--info {
  background: #cce5ff; }
  .c-pill--info:before {
    background: #004085; }
.c-pill--primary {
  background: #E3EFFA; }
  .c-pill--primary:before {
    background: #6854C0; }