/* =====================================================
   KANBAN ACTIONS - SISGCOE
===================================================== */

/* BOTÕES */
.botoes{
    display:flex;
    flex-wrap:nowrap;
    gap:6px;
    width:100%;
    align-items:center;
}

.botoes form{
    flex:1 1 0;
    min-width:0;
    margin:0;
    display:flex;
}

.btn{
    flex:1 1 0;
    min-width:0;

    height:28px;
    padding:0 4px;

    border:none;
    border-radius:7px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff !important;
    font-size:.64rem;
    font-weight:900;
    line-height:1;

    white-space:nowrap;
    box-sizing:border-box;

    cursor:pointer;
    transition:.15s ease;
}

.btn:hover{
    transform:translateY(-1px);
    opacity:.94;
}

.azul{ background:#2563eb; }
.verde{ background:#16a34a; }
.vermelho{ background:#ef4444; }
.laranja{ background:#f97316; }
.cinza{ background:#6b7280; }

/* CONCLUÍDO COM 4 BOTÕES */
.concluido .botoes{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:5px;
}

.concluido .btn{
    height:28px;
    font-size:.55rem;
    padding:0 3px;
}
