/* Status Badge */
.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    animation: fadeInScale 0.4s ease-out;
}

.status-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.status-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.status-failed {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeeba;
}

.status-error {
    background: #e2e3e5;
    color: #383d41;
    border: 2px solid #d6d8db;
}