.human-upload-area {
    cursor: pointer;
    transition: all 0.3s;
}

.human-upload-area:hover {
    border-color: #2563eb;
    background-color: #f0f9ff;
}

.human-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: shadow 0.3s;
}

.human-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.status-pending {
    color: #f59e0b;
}

.status-processing {
    color: #3b82f6;
}

.status-completed {
    color: #10b981;
}

.status-failed {
    color: #ef4444;
}

.tab-panel {
    display: block;
}

.tab-panel.hidden {
    display: none;
}