/* Design ultra minimalista */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: #000;
    border-bottom: 1px solid #e5e7eb;
}

thead th {
    padding: 16px 14px;
    color: #fafafa;
    font-weight: 500;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 14px;
    border-bottom: 1px solid #f3f4f6;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

/* Hover quase imperceptível */
tbody tr:hover td {
    background-color: #fafafa;
}

/* Estilos específicos */
td.numeric-cell {
    font-family: 'SF Mono', monospace;
    color: #111827;
    text-align: right;
    font-weight: 400;
}

td.time-cell {
    font-family: 'SF Mono', monospace;
    color: #7c2d12;
    text-align: right;
    font-weight: 400;
}

td.percent-cell {
    color: #059669;
    font-weight: 500;
    text-align: center;
}

/* Grupo muito sutil */
.group-row {
    background: #f3f4f6;
    border-left: 2px solid #6b7280;
}

.group-row td {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 14px;
}

/* Cores de produtividade muito sutis */
tr.row-productif td {
    color: #065f46;
    border-left: 2px solid #10b981;
}

tr.row-improductif td {
    color: #991b1b;
    border-left: 2px solid #ef4444;
}

/* Badge discreto */
td span[style*="background-color: #e3f2fd"] {
    background: #f3f4f6 !important;
    color: #4b5563 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 11.5px !important;
    border: 1px solid #e5e7eb !important;
}