body {
    
  min-height: 100vh;


}
.card {
    border-radius: 1rem;
}
.fondo-admin {
    background: url('../img/fondo_admin.jpg') no-repeat center center fixed;

     
  background-size: cover;
  background-attachment: scroll;
    color: #fff;
    min-height: 100vh;
}

.fondo-jugador {
    background: url('../img/fondo_jugador.jpg') no-repeat center center fixed;
  
  background-size: cover;
  background-attachment: scroll;
    color: #fff;
    min-height: 100vh;
}

.fondo-equipo {
    background: url('../img/fondo_equipo.jpg') no-repeat center center fixed;
    
  background-size: cover;
  background-attachment: scroll;
    color: #fff;
    min-height: 100vh;
}

.fondo-default {
  background: url('../img/fondo_admin.jpg') no-repeat center center fixed;
    
  background-size: cover;
  background-attachment: scroll;
    min-height: 100vh;
}

.navbar-custom {
    background-color: #42bcc0 !important; /* color personalizado */
     font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}
.label-negrita {
    font-weight: 900;
    color: #000;
}

    #chat-box {
        max-height: 400px;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(4px);
        border-radius: 10px;
        padding: 15px;
    }

    .mensaje {
        padding: 10px 15px;
        border-radius: 20px;
        max-width: 70%;
        margin-bottom: 10px;
        line-height: 1.4;
        display: inline-block;
    }

    .mensaje-propio {
        background-color: #d1f7d6;
        align-self: flex-end;
        margin-left: auto;
    }

    .mensaje-recibido {
        background-color: #e4e6eb;
        align-self: flex-start;
        margin-right: auto;
    }

    #form-mensaje .input-group {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        border-radius: 10px;
        padding: 10px;
    }

    textarea#mensaje {
        border: none;
        border-radius: 10px;
        resize: none;
        padding: 10px;
    }

    button[type="submit"] {
        border-radius: 10px;
    }
.mensaje .text-end {
    color: #666;
}
