.tabela-protocolos{
    background:white;
    border-radius:10px;
    overflow:hidden;
}

/* cabeçalho */
.tabela-protocolos thead{
    background:#f8f9fa;
}

.tabela-protocolos thead th{
    font-weight:600;
    color:#555;
    border-bottom:2px solid #e9ecef;
}

/* linhas */
.tabela-protocolos tbody tr{
    transition:0.2s;
}

/* hover bonito */
.tabela-protocolos tbody tr:hover{
    background:#f6f8fb;
}

/* espaçamento */
.tabela-protocolos td{
    padding:14px;
    vertical-align:middle;
}

/* link protocolo */
.tabela-protocolos a{
    font-weight:500;
    text-decoration:none;
}

.tabela-protocolos a:hover{
    text-decoration:underline;
}

/* badges mais arredondados */
.badge{
    padding:6px 10px;
    font-size:12px;
    border-radius:20px;
}