.orders-container {
    padding: 2rem 0;
}
.page-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 1rem;
}
.empty-state {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    color: #6c757d;
}
.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.order-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: transform 0.2s;
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.order-header {
    background: #f8f9fa;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}
.order-id {
    font-weight: 600;
    color: #495057;
}
.order-body {
    padding: 1rem;
}
.order-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.order-detail-label {
    color: #6c757d;
    font-size: 0.9rem;
}
.order-detail-value {
    font-weight: 600;
}
.order-footer {
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.badge {
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
}
.badge-warning {
    background-color: #fff3cd;
    color: #856404;
}
.badge-primary {
    background-color: #cce5ff;
    color: #004085;
}
.badge-danger {
    background-color: #f8d7da;
    color: #721c24;
}
.badge-success {
    background-color: #d4edda;
    color: #155724;
}
.badge-info {
    background-color: #d1ecf1;
    color: #0c5460;
}
.btn-view {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}
.btn-view:hover {
    background-color: #0069d9;
    text-decoration: none;
    color: white;
}
@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .order-status {
        margin-top: 0.5rem;
    }
}
