/* ================================
/* Barra de progreso de pedido 
================================ */
.barra-progreso-envio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    position: relative;
}

.barra-progreso-envio .paso {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    font-weight: bold;
}

.barra-progreso-envio .paso i {
    font-size: 24px;
    padding: 10px;
    background: #ddd;
    border-radius: 50%;
    transition: background 0.3s ease;
}

/* Línea entre pasos */
.barra-progreso-envio .linea {
    flex: 1;
    height: 5px;
    background: #ddd;
    margin: 0 10px;
    transition: background 0.3s ease;
}

/* Estados activos */
.barra-progreso-envio .paso.activo {
    color: #5b38ed;
}

.barra-progreso-envio .paso.activo i {
    background: #5b38ed;
    color: white;
}

.barra-progreso-envio .linea.completado {
    background: #5b38ed;
}

/* ================================
   Guía de Envío
================================ */
.guia-envio-container {
    background: #f9f9f9; 
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guia-envio-container p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Flexbox para mantener la guía y el botón alineados a la derecha */
.guia-envio-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    justify-content: flex-end;
}

/* Área de la guía de envío */
.guia-envio {
    width: 80%;
    max-width: 250px;
    padding: 8px;
    border: 2px solid #5b38ed;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    background: #e0e0e0;
    color: #222;
    border-radius: 5px;
}

/* Botón para copiar la guía */
.btn-copiar {
    background: #5b38ed;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 18px;
}

.btn-copiar:hover {
    background: #5b38ed;
}

/* ================================
   Estilo para Pedidos Cancelados
================================ */
.alerta-cancelado {
    background: #ffdddd;
    color: #d32f2f;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.alerta-cancelado i {
    font-size: 20px;
}
