/**
 * Styles Frontend - MyCoverUp
 * 
 * @package MyCoverUp
 * @version 1.0.0
 */

/* Styles pour la timeline de commande */
.order-status-timeline {
    margin: 20px 0;
}

.status-steps {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-between;
}

.status-step {
    text-align: center;
    flex: 1;
    padding: 10px;
}

.status-circle {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #ccc;
}

.status-step.active .status-circle {
    background-color: #0071a1;
}

/* Styles pour le dashboard apporteur */
.apporteur-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

