﻿.bestell-flow-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
}

.flow-start {
    text-align: center;
    margin-bottom: 1.5rem;
}

.btn-start {
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-start:hover {
        background-color: #0056b3;
    }

.bestell-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flow-step {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

    .flow-step .step-title {
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        color: #007bff;
    }

    .flow-step .step-desc {
        font-size: 0.95rem;
        color: #333;
    }




.bestell-steps_mobil {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

    .bestell-steps_mobil .step-item_m {
        display: inline-block;
        margin: 0 0.2rem;
        padding: 0;
        font-size: 0.8rem;
        color: #333;
        background: none;
        border: none;
        box-shadow: none;
    }

        .bestell-steps_mobil .step-item_m.active {
            color: #007bff;
            font-weight: bold;
        }