/*Nav y encabezado (header)*/
.navbar-nav .nav-link {
    font-size: 1.1em;
    font-weight: bold;
}

.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px; /* Línea fina */
  background-color: #ffffff; /* Cambia según el color de tu diseño */
}


.custom-navbar {
  background-color: #009520;
  padding: 0.75rem 0;
}

.custom-navbar .nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.custom-navbar .nav-link:hover {
  color: #cce5cc !important;
}
.navbar-nav .nav-item {
  margin-right: 1.25rem;
}
.navbar-nav .nav-link:hover {
  color: #cce5cc !important;
}

/* Estilos para el indicador de usuario logueado */
#infoUsuario {
  font-size: 0.85em;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#infoUsuario i {
  margin-right: 4px;
}

#infoUsuario span {
  display: inline-block;
  white-space: nowrap;
}

main{
  padding-top: 120px;
}

w-400{
  width: 400px;
}





/*Footer*/
.footer {
    background-color: #28a745;
    padding: 20px 0;
}
.footer h5 {
    font-weight: bold;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin: 10px 0;
}
.footer ul li a {
    color: #343a40;
    text-decoration: none;
}
.footer ul li a:hover {
    text-decoration: underline;
}
.footer .social-icons img {
    width: 40px;
    margin: 0 10px;
}

.fotoEncabezado {
    width: 100%;
    height: auto;
}
.bg-success {
    background-color: #28a745 !important;
}
.escudo {
    width: 100px;
    height: auto;
}

/*Página para los jugadores y staff con tarjetas*/
.jugador-card {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #e8f5e9; /* Verde claro */
}
.jugador-img {
  object-fit: cover;
  height: 200px;
}
.staff-card {
  background-color: #c8e6c9; /* tono diferente para staff */
}



 
/*Iconos*/
  .social-icon {
    filter: brightness(0) invert(1); /* Cambia los íconos a blanco */
    width: 50px; /* Ajusta el tamaño si es necesario */
    height: 50px;
    transition: filter 0.3s ease; /* Transición suave para hover */
  }
  
  .social-icon:hover {
    filter: brightness(0.8) invert(1); /* Efecto al pasar el cursor */
  }
  
  
