﻿.flow-monitor {
    padding: 0px;
}

.flow-status {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.flow-step {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .flow-step.processing {
        border-color: var(--bs-primary);
        background-color: rgba(13, 110, 253, 0.05);
    }

    .flow-step.completed {
        border-color: var(--bs-success);
        background-color: rgba(25, 135, 84, 0.05);
    }

    .flow-step.error {
        border-color: var(--bs-danger);
        background-color: rgba(220, 53, 69, 0.05);
    }

.flow-node {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .flow-node i {
        font-size: 1.25rem;
    }

.flow-connector {
    height: 2px;
    background: #dee2e6;
    margin: 10px 0;
    position: relative;
}

    .flow-connector::after {
        content: '';
        position: absolute;
        bottom: -3px;
        right: -3px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #dee2e6;
    }

.step-duration {
    font-size: 0.875rem;
    color: #6c757d;
}

.step-error {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.processing .bi-arrow-repeat {
    animation: spin 2s linear infinite;
}

.progress {
    height: 20px;
}

.progress-bar {
    transition: width 0.6s ease;
}

.badge {
    font-weight: 500;
}

.bg-blue {
    background-color: #45bbe0;
}

.bg-pink {
    background-color: #f06292;
}

.bg-green {
    background-color: #72b94c;
}
