.card,
.tabela-container {
    border-radius: var(--app-radius-lg);
    border-color: var(--app-border);
    box-shadow: var(--app-shadow-sm);
}

.table thead th {
    border-bottom: 1px solid var(--app-border);
}

.form-control,
.form-select,
.input-group-text {
    border-radius: var(--app-radius-sm);
    border-color: var(--app-border);
}

.btn {
    border-radius: 0.62rem;
}

/* Timeline do modal de pedidos */
.timeline-item {
    position: relative;
    z-index: 1;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: -1;
}
.timeline-item:last-child::before {
    display: none;
}
.timeline-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.timeline-item.active .timeline-icon {
    background: #0d6efd;
    color: white;
}
.timeline-item.completed .timeline-icon {
    background: #198754;
    color: white;
}
.timeline-item-warning .timeline-icon {
    background: #ffc107;
    color: #212529;
}
.timeline-item-warning.completed .timeline-icon,
.timeline-item.timeline-item-warning .timeline-icon {
    background: #ffc107;
    color: #212529;
}
.timeline-row-dynamic .timeline-item::before {
    display: none;
}
.timeline-row-dynamic .timeline-connector {
    pointer-events: none;
}

