/* Tabela de Animais - Estilo Planilha Excel Pura */
#animalsTable tr,
.birth-history-table tr,
.ranking-table tr {
    border-bottom: 1px solid #e2e8f0 !important;
}

#animalsTableBody tr:hover,
.birth-history-table tbody tr:hover {
    background-color: #f8fafc !important;
}

#animalsTableBody td,
.birth-history-table td {
    padding: 8px 12px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 13px !important;
    color: #334155 !important;
}

#animalsTable thead th,
.birth-history-table thead th {
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    padding: 10px 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #475569 !important;
    font-size: 11px !important;
}

/* Remover diferenciação por cores de fundo */
#animalsTableBody tr.row-male,
#animalsTableBody tr.row-female {
    background-color: white !important;
}

/* Ganho de peso simplificado */
.gain-badge {
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
}

/* Botões de ação alinhados com Excel */
.action-buttons {
    display: flex !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

.btn-icon-excel {
    background: none !important;
    border: 1px solid #e2e8f0 !important;
    padding: 4px !important;
    border-radius: 4px !important;
    color: #64748b !important;
    transition: all 0.2s !important;
}

.btn-icon-excel:hover {
    background: #f1f5f9 !important;
    color: #1e293b !important;
}

.btn-icon-excel.danger:hover {
    background: #fef2f2 !important;
    color: #ef4444 !important;
}