#orders-app {
    position: relative;
}

.orders-filters {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 5px;
}

.search-box input {
    flex: 1;
    min-width: 200px;
}

.filter-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.status-badge.pending {
    background-color: #f0ad4e;
    color: white;
}

.status-badge.processing {
    background-color: #5bc0de;
    color: white;
}

.status-badge.completed {
    background-color: #5cb85c;
    color: white;
}

.status-badge.cancelled {
    background-color: #d9534f;
    color: white;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.no-orders {
    text-align: center;
    padding: 20px;
    color: #666;
}

.current-page {
    margin: 0 10px;
}