/* Orders Page Styles */
.orders-sidebar {
    position: sticky;
    top: 80px;
}

.orders-sidebar .card {
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.orders-sidebar .list-group-item {
    border: none;
    border-left: 3px solid transparent;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: transparent;
}

.orders-sidebar .list-group-item:hover {
    background-color: rgba(107, 68, 35, 0.05);
    border-left-color: #6B4423;
    transform: translateX(5px);
}

.orders-sidebar .list-group-item.active {
    background: linear-gradient(90deg, rgba(107, 68, 35, 0.1) 0%, transparent 100%);
    border-left-color: #6B4423;
    color: #6B4423;
    font-weight: 600;
}

.orders-sidebar .list-group-item i {
    width: 20px;
    text-align: center;
}

.order-card {
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.order-card .card-header {
    background: linear-gradient(90deg, rgba(107, 68, 35, 0.05) 0%, transparent 100%);
    border: none;
    padding: 20px 24px;
    border-left: 4px solid #6B4423;
}

.order-card .card-body {
    padding: 24px;
}

.order-status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.order-timeline {
    position: relative;
    padding: 20px 0;
    margin: 20px 0;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

/* .timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6B4423;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #6B4423;
} */

.timeline-item.inactive::before {
    background: #e9ecef;
    box-shadow: 0 0 0 2px #e9ecef;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 80px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #6c757d;
    margin-bottom: 10px;
}

.empty-state p {
    color: #adb5bd;
}

@media (max-width: 768px) {
    .orders-sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .order-card .card-header {
        padding: 15px;
    }

    .order-card .card-body {
        padding: 15px;
    }
}
