
.container_card_equipes{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}


.image_bandeira_equipe{
    background-size: contain;
    background-position: center;
    border-radius: 50%;
    height: 60px;
    width:  60px;
    border: 1px solid var(--gray-10);
}

.image_bandeira_equipe_representacao_editar{
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 150px;
}


.card-equipe{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    min-width: 280px;
    margin: 8px 0;
    padding: 8px;
    border: 1px solid gainsboro;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: white;

}

.card-equipe:hover{
    /* cor de funcdo */
    /* background-color: var(--color-primary-pastel-02); */
    background-color: var(--gray-1);
    border: 1px solid var(--verde-claro);
}

.card-header-equipe
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4px 8px 4px 4px;
    width: 110px;
}

.card-body-equipe{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 280px);
    margin: 4px;
}

.card-body-equipe .card-text{
    font-size: 1rem;
    color: var(--gray-60);
    text-align: left;
}
.image_bandeira_equipe{
    background-color: white;
}
.card-equipe-title{
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-70);
    text-align: left;
}

.icone_status i
{
    font-size: 1rem;
    margin: 4px;
}

.equipe_reprovada{
    margin: 4px auto;
    background-color: transparent;
    color: #721c24;
    font-size: .8rem;
}

.equipe_aprovada{
    margin: 4px auto;
    background-color: transparent;
    color: #155724;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
}


.equipe_em_analise{
    margin: 8px auto;
    background-color: transparent;
    color: #856404;
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
}

.equipe_cancelada{
    background-color: transparent;
    color: #721c24;
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
    
}

.btn-card-equipe{
    width: 140px;
    height: 40px;
    border-radius: 8px;
    margin: 4px auto;
    font-size: .8rem;
    font-weight: 400;
    border: none;
}
.btn-card-equipe.ver{
    background-color: var(--verde-claro);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn-card-equipe.ver:hover{
    background-color: #7bd576;
}

.btn-card-equipe.editar{
    background-color: var(--verde-escuro);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-card-equipe.editar:hover{
    background-color: #0b8148;
}




@media (max-width: 768px) {
    .card-equipe{
        width: 100%;
        margin: 12px auto;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .card-body-equipe
    {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .card-equipe-title{
        font-size: 1rem;
        text-align: center;
    }

    .card-body-equipe .card-text{
        font-size: 0.9rem;
        text-align: center;
    }

    .btn-card-equipe
    {
        width: 100%;
    }

}
