.table-card {
    background-color: var(--color-surface); border-radius: var(--border-radius-lg);
    padding: 0; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.7s ease-out both;
    display: flex; flex-direction: column;
}
.table-controls {
    display: flex; flex-wrap: wrap; justify-content: space-between;
    align-items: center; gap: 16px; padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}
.table-controls { gap: 12px; }
.table-wrapper { overflow-x: auto; padding: 16px 8px 0; }
table {
    width: 100%; min-width: 900px; text-align: left; border-collapse: separate;
    border-spacing: 0 10px; table-layout: fixed;
}
thead th {
    padding: 12px 24px; color: var(--color-text-secondary);
    font-weight: 600; font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.5px; white-space: nowrap;
}
tbody tr {
    background-color: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md); transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0; animation: fadeInUp 0.5s ease-out forwards;
}
tbody tr:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
    z-index: 2; position: relative; border-color: var(--color-accent-light);
}
td {
    padding: 20px 24px; font-size: 16px; vertical-align: middle; border: none;
    white-space: nowrap;
}
td:first-child { border-top-left-radius: var(--border-radius-md); border-bottom-left-radius: var(--border-radius-md); }
td:last-child { border-top-right-radius: var(--border-radius-md); border-bottom-right-radius: var(--border-radius-md); }
.cell-center { display: flex; justify-content: center; align-items: center; height: 100%; }
.company-name-cell {
    font-weight: 600; color: var(--color-text-primary); text-transform: uppercase;
    overflow: hidden; text-overflow: ellipsis;
}
.task-id-cell {
    display: flex; align-items: center; gap: 8px;
    font-weight: 600; color: var(--color-text-secondary);
}
.task-id-cell .lucide { color: var(--color-text-tertiary); flex-shrink: 0; }
input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 20px; height: 20px; border: 2px solid #ced4da;
    border-radius: 6px; background-color: var(--color-bg);
    cursor: pointer; position: relative; transition: all 0.2s ease-in-out; flex-shrink: 0;
}
input[type="checkbox"]:hover { border-color: var(--color-accent); }
input[type="checkbox"]:checked {
    background-color: var(--color-accent); border-color: var(--color-accent);
}
input[type="checkbox"]:checked::after {
    content: ''; position: absolute; top: 2px; left: 6px;
    width: 4px; height: 10px; border: solid white;
    border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.action-button {
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--color-text-tertiary); border-radius: 50%;
    display: inline-flex; transition: color 0.2s, background-color 0.2s;
}
.action-button:hover { color: var(--color-accent); background-color: var(--color-accent-light); }
.pagination { 
    padding: 24px 24px 16px; display: flex; justify-content: space-between; align-items: center;
    color: var(--color-text-secondary); font-size: 14px;
}