﻿.order-detail-container {
    max-width: 1400px;
    margin: auto;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

    .order-info-row label {
        font-weight: 600;
        color: #666;
    }

.timeline {
    position: relative;
    padding-left: 20px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 7px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #ddd;
    }

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-icon {
    width: 14px;
    height: 14px;
    background: #0d6efd;
    border-radius: 50%;
    position: absolute;
    left: -1px;
    top: 4px;
}

.timeline-content {
    margin-left: 20px;
}

.timeline-title {
    font-weight: 600;
}

.timeline-meta {
    font-size: 12px;
    color: #888;
}
.order-detail-container {
    max-width: 1400px;
    margin: auto;
}
.order-info div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.order-info label {
    font-weight: 600;
    color: #6c757d;
}
.order-actions {
    position: sticky;
    top: 90px;
}
.order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 12px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    background: white;
}

.order-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #eee;
}

.order-item-name {
    font-weight: 600;
}

.order-item-meta {
    font-size: 13px;
    color: #666;
}

.order-item-qty {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-badge {
    background: #0d6efd;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
}