.user-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    opacity: 0;
    transform: translateY(10px);
}

.user-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.user-card img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
    margin-right: 15px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: bold;
    font-size: 17px;
    color: #333;
}

.user-team {
    font-size: 14px;
    color: #6c757d;
}

@media only screen and (min-width: 1201px) {
    td.fixo {
        width: 350px;
        max-width: 350px;
        overflow: hidden;
        white-space: nowrap;
    }

/*    td.fixo .input-group {
        flex-wrap: nowrap;
    }

    td.fixo input {
        max-width: 60px;
    }*/
}

@media (max-width: 1199px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    thead {
        display: none; /* Esconde cabeçalhos em telas pequenas */
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        padding: 10px;
        background: #fff;
        border-radius: 5px;
    }

    td {
        /*display: flex;*/
        justify-content: space-between;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        position: relative;
    }

    td:last-child {
        border-bottom: none;
    }

    /*td::before {
        content: attr(data-label); Exibe o nome da coluna antes do valor * /
        font-weight: bold;
        text-transform: uppercase;
        color: #333;
    }*/
    
    tfoot {
        display: block;
        width: 100%;
        background: #f8f9fa; /* Cor de fundo para destacar */
        padding: 10px;
        border-radius: 5px;
        margin-top: 10px;
    }

    tfoot tr {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza os itens */
        width: 100%;
    }

    tfoot td {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    #msg-misto {
        text-align: center;
    }

    #hide-equipe {
        width: 100%;
        max-width: 250px; /* Para evitar que o botão fique muito grande */
    }    
    
}
