.finished-slider {
    border: 2px solid var(--bg-5);

    .finished-gripper {
        z-index: 3;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--bg-1);
        border: 2px solid var(--bg-5);
        border-radius: 8px;
        cursor: ew-resize;
    }
}

.automation-flowchart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Space between cards */
    background: white;
    border-radius: 1rem;
    position: relative;

    .flow-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--light-bg);
        padding: 1.5rem;
        border-radius: 1rem;
        width: 100%;
        max-width: 400px;
        border: 1px solid #eee;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);

        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            border-color: var(--brand-2);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #e6f0ff;
            color: var(--brand-3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .content {
            h4 {
                margin: 0;
                font-size: 1.1rem;
                font-weight: 700;
                color: #333;
            }

            p {
                margin: 0;
                font-size: 0.9rem;
                color: #666;
            }
        }

        /* Vertical Connectors */
        .connector-down {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 25px;
            background: #ddd;
            z-index: 1;

            &::after {
                content: '▼';
                position: absolute;
                bottom: -8px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 0.7rem;
                color: #ddd;
            }
        }
    }
}
