/* CSS personalizado */

/* Estilos para a tabela de clientes - Adicionado por fix_table_format.php */
.table-clientes {
    width: 100%;
    border-collapse: collapse;
}

.table-clientes th, .table-clientes td {
    padding: 8px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

.table-clientes th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table-clientes tr:hover {
    background-color: #f1f1f1;
}

.table-clientes .btn {
    white-space: nowrap;
}

/* Limita o tamanho das colunas */
.table-clientes .col-codigo {
    width: 8%;
}

.table-clientes .col-nome {
    width: 20%;
}

.table-clientes .col-documento {
    width: 15%;
}

.table-clientes .col-endereco {
    width: 20%;
}

.table-clientes .col-cidade {
    width: 12%;
}

.table-clientes .col-telefone {
    width: 10%;
}

.table-clientes .col-email {
    width: 15%;
}

.table-clientes .col-acoes {
    width: 10%;
    text-align: center;
}

/* Trunca texto longo com reticências */
.table-clientes td {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
