/* Customer Order Drawer Styles */
.customer-order-drawer {
    z-index: 400;
}

.customer-order-drawer .modal-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.customer-order-drawer .transform-translate-x-full {
    transition: transform 0.3s ease-in-out;
}

.customer-order-drawer .transform-translate-x-full.translate-x-full {
    transform: translateX(100%);
}

.customer-order-drawer .invisible {
    opacity: 0;
    pointer-events: none;
}

.customer-order-drawer .invisible .transform-translate-x-full {
    transform: translateX(100%);
}

/* Timeline Styles for Customer */
.timeline-step {
    position: relative;
    padding-left: 12px;
    margin-bottom: 16px;
}

.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 32px;
    bottom: -16px;
    width: 2px;
    background: #e5e7eb;
}

.timeline-completed:not(:last-child)::before {
    background: #10b981;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-completed .timeline-icon {
    background: #dcfce7;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.timeline-pending .timeline-icon {
    background: #f3f4f6;
    color: #9ca3af;
    border: 2px solid #e5e7eb;
}

/* Status Notifications */
.order-status {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.status-confirmed {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

.status-preparing {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #f59e0b;
}

.status-ready {
    background: #dcfce7;
    color: #059669;
    border: 1px solid #10b981;
}

.status-completed {
    background: #dcfce7;
    color: #059669;
    border: 1px solid #10b981;
}

.status-cancelled {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #ef4444;
}
