.audit-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.audit-control button {
    background: #2563eb;
    color: white;
    padding: 10px 18px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.24);
    transition: all 0.18s ease;
}

.audit-control button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.audit-control button:disabled {
    background: #334155;
    border-color: rgba(148, 163, 184, 0.10);
    cursor: not-allowed;
    box-shadow: none;
}

#audit-status-badge {
    background: rgba(15, 23, 42, 0.88) !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(148, 163, 184, 0.10);
    box-shadow: none;
}
