/* Workflow Styles */
.workflow-container {
    width: 100%;
    overflow-x: auto;
    padding: 15px 0;
}

.workflow-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 750px;
    padding: 0 20px;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 100px;
    z-index: 5;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.workflow-step.completed .step-circle {
    background-color: #28a745;
    transform: scale(0.9);
}

.workflow-step.active .step-circle {
    background-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25), 0 2px 8px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.workflow-step.pending .step-circle {
    background-color: #6c757d;
}

.step-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.workflow-step.completed .step-name {
    color: #28a745;
}

.workflow-step.active .step-name {
    color: #007bff;
    font-weight: bold;
    transform: scale(1.05);
}

.step-status {
    font-size: 12px;
    color: #6c757d;
    max-width: 150px;
    background-color: #f8f9fa;
    padding: 5px 8px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.workflow-connector {
    flex-grow: 1;
    height: 3px;
    background-color: #dee2e6;
    margin: 0 5px;
    min-width: 40px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.workflow-connector.completed {
    background-color: #28a745;
    height: 4px;
}

.workflow-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.step-circle .bi {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .workflow-progress {
        min-width: 650px;
    }
} 