/* =======================
   NAVBAR TABS HISTORIAL DEPORTIVO – barra
   ======================= */

#navbar-tabs-historial-deportivo-custom{
  width: calc(100% + 400px);
  margin-left: -200px;
  min-height: 2.7rem;
  background-color: #151a1c;
  position: sticky;
  top: 5.4rem;
  z-index: 998;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;

  padding: 0.3rem 0;
  margin-top: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* =======================
   BOTONES HISTORIAL DEPORTIVO – pills
   ======================= */

#navbar-tabs-historial-deportivo-custom .navpill-btn-historial-deportivo{
  appearance: none;
  -webkit-appearance: none;
  border-radius: 9999px;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;

  background: transparent;
  color: #eaeaea;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);

  transform: translateY(0);
  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;

  cursor: pointer;
  text-decoration: none;
  user-select: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;

  white-space: nowrap;
  vertical-align: middle;
  outline: none;
}

/* icono dentro del botón */
#navbar-tabs-historial-deportivo-custom .navpill-btn-historial-deportivo img{
  height: 18px;
  width: 18px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  flex: 0 0 auto;
}

/* hover */
#navbar-tabs-historial-deportivo-custom .navpill-btn-historial-deportivo:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}

/* activo */
#navbar-tabs-historial-deportivo-custom .navpill-btn-historial-deportivo.is-active{
  background: transparent;
  color: #5FFF92;
  border-color: #5FFF92;
  box-shadow:
    0 0 0 1px rgba(95,255,146,.25) inset,
    0 8px 22px rgba(0,0,0,.28);
  transform: translateY(-1px);
}

#navbar-tabs-historial-deportivo-custom .navpill-btn-historial-deportivo.is-active:hover{
  box-shadow:
    0 0 0 1px rgba(95,255,146,.45) inset,
    0 10px 26px rgba(0,0,0,.32);
}