/* Tabela geral */
.doc-tabela {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.doc-tabela thead tr {
    background: #f0f0f0; 
}

/* Cabeçalho conforme a imagem */
.doc-tabela thead th {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 3px solid #000;
}

.doc-col-nome {
    text-align: left;
}

.doc-col-icone {
    text-align: center;
    width: 80px;
}

/* Linhas alternadas (um sim, outro não) */
.doc-tabela tbody tr:nth-child(odd) {
    background: #f0f0f0;
}

.doc-tabela tbody tr:nth-child(even) {
    background: #ffffff; 
}

/* Nome alinhado verticalmente */
.doc-nome {
    padding: 15px;
    font-size: 16px;
    text-align: left;
}

/* Centralizar corretamente os ícones */
.doc-centro {
    text-align: center;
    font-size: 16px;
}

/* Ícones */
.doc-icone {
    width: 25px;
    height: 25px;
    display: inline-block;
}

/* Hover na linha inteira */
.doc-tabela tbody tr {
    transition: background-color 0.25s ease-in-out;
}

.doc-tabela tbody tr:hover {
    background-color: #bfbebe;
    cursor: pointer;
}

/* Se quiser evitar que o hover ative em linhas vazias */
.doc-tabela tbody tr:hover td {
    background-color: inherit;
}


.doc-nome a,
.doc-nome-sem-link {
    display: flex;
    align-items: flex-start; 
    gap: 10px;
}

.doc-nome a::before,
.doc-nome-sem-link::before {
    content: "";
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    background-image: url("https://www.sindiembalagens.i9publicidade.com.br/wp-content/uploads/2026/01/Documentos.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



@media (max-width: 782px) {

    /* Faz a tabela respeitar larguras fixas */
    .documentos .doc-tabela {
        table-layout: fixed;
    }

    /* Coluna 1 (Nome do Documento) */
    .documentos .doc-tabela td.doc-nome {
        width: 80%; /* ajuste aqui o tamanho desejado */
    }

    /* Coluna 2 e 3 (Ícones) */
    .documentos .doc-tabela td.doc-centro,
    .documentos .doc-tabela th.doc-centro {
        width: 13%;  /* ajuste aqui também */
    }

    /* Garante que texto longo quebre */
    .documentos .doc-tabela td {
        word-wrap: break-word;
    }
    
    .doc-tabela thead th, .doc-nome {
        font-size: 15px;
    }
    
    
    .doc-nome {
        text-align: left;
    }
    
    .doc-icone, .doc-nome a::before,
.doc-nome-sem-link::before {
        width: 20px;
        height: 20px;
    }   


    .documentos {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }

    .documentos .doc-tabela {
        width: 100%;
        table-layout: fixed;
    }
    
}




