.hs-filtro-fase {
    margin: 10px 0 15px;
    padding: 8px 10px;
    background: #f7f7f9;
    border: 1px solid #e0e0e5;
    border-radius: 6px;
}

/* Título do filtro (pai direto de .hs-filtro-fase) */
.hs-filtro-fase__titulo {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* Container dos botões (filho) */
.hs-filtro-fase__botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Botões individuais (filho) */
.hs-filtro-fase__botao {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #d0d0d5;
    background: #ffffff;
    font-size: 0.8rem;
    color: #444;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Hover no botão */
.hs-filtro-fase__botao:hover {
    background: #e9f0ff;
    border-color: #b0c5ff;
    color: #1f3a93;
}

/* Botão ativo (fase selecionada) */
.hs-filtro-fase__botao.ativo {
    background: #1f3a93;
    border-color: #1f3a93;
    color: #ffffff;
    font-weight: 600;
}
table>tbody>tr>td>span{}
table>tbody>tr>td>span>span.reqType.type1{background: #4CAF50;}
table>tbody>tr>td>span>span.reqType.type2{background: #2196F3;}
table>tbody>tr>td>span>span.reqType.type3{background: #FF9800;}
table>tbody>tr>td>span>span.reqType.type4{background: #ff584c;}
table>tbody>tr>td>span>span.reqType.type5{background: rgb(151, 15, 135);}
table>tbody>tr>td>span>span.reqType.type6{background: rgb(255, 5, 201);}
table>tbody>tr>td>span>span.reqType.type7{background: #a39728;}
table>tbody>tr>td>span>span.reqType.type8{background: #c7c7c7;}
table>tbody>tr>td>span>span.reqType.type9{background: red;}
table>tbody>tr>td>span>span.reqType.type10{background: red;}
table>tbody>tr>td>span>span.reqType.type11{background: rgb(18, 251, 255);}
table>tbody>tr>td>span>span.reqType.type12{background: rgb(0, 213, 255);}
table>tbody>tr>td>span>span.reqType.type13{background: #ffea2f;}
table>tbody>tr>td>span>span.reqType.type14{background: #ffc30f;}
table>tbody>tr>td>span>span.reqType.type15{background: #d2d2d2;}
table>tbody>tr>td>span> .reqType{
  display: flex;
  position: relative;
  /* transform: translateY(-50%); */
  width: 10px;
  height: 10px;
  border-radius: 999px;
   /* alinha com o texto */
  box-shadow: 0 0 0 2px #ffffff inset, 0 0 0 1px rgba(0,0,0,.06);
}
@media (max-width: 850px){
    .hs-filtro-fase__botoes {
        gap: 8px;
    }

    .hs-filtro-fase__botao {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}